-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
50
{
"name": "great-uri-template",
"version": "0.1.6",
"description": "URI template format for Integreat, loosely based on RFC 6570",
"author": "Kjell-Morten Bratsberg Thorsen <post@kjellmorten.no> (http://kjellmorten.no/)",
"license": "ISC",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "npm run lint && NODE_ENV=test nyc --reporter=text-summary ava",
"dev": "NODE_ENV=test ava --watch",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"nyc:report": "nyc report",
"lint": "standard"
},
"ava": {
"babel": true,
"files": [
"tests/**/*-test.js",
"lib/**/*-test.js"
]
},
"nyc": {
"exclude": [
"**/*-test.js"
]
},
"engines": {
"node": ">= 8.6",
"npm": ">= 5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjellmorten/great-uri-template.git"
},
"bugs": {
"url": "https://github.com/kjellmorten/great-uri-template/issues"
},
"homepage": "https://github.com/kjellmorten/great-uri-template#readme",
"devDependencies": {
"@ava/babel": "^1.0.1",
"ava": "^3.11.1",
"coveralls": "^3.1.0",
"nyc": "^15.1.0",
"standard": "^14.3.4"
},
"dependencies": {
"date-and-time": "^0.13.1"
}
}