-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1022 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@btilford/uri-template",
"version": "0.0.2",
"description": "Javascript RFC 6570 URI template",
"main": "index.js",
"homepage": "https://github.com/btilford/js-uri-template#readme",
"scripts": {
"test": "nyc mocha",
"lint": "eslint .",
"format": "eslint . --fix",
"build": "npm run lint && npm run test && npm run docs",
"docs": "scripts/docs.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/btilford/js-uri-template.git"
},
"keywords": [
"uri",
"RFC6570",
"template"
],
"author": {
"name": "btilford"
},
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/btilford/js-uri-template/issues"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.1"
}
}