-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.02 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
{
"name": "vers",
"version": "1.0.0",
"description": "Effortless data model versioning for Javascript and Node.js",
"main": "src/Vers.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-cov && npm run check-cov",
"lint": "standard",
"mocha": "mocha",
"test-cov": "istanbul cover _mocha -- -R spec test",
"check-cov": "istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100"
},
"repository": {
"type": "git",
"url": "http://github.com/TomFrost/Vers"
},
"keywords": [
"data",
"model",
"version",
"upgrade",
"downgrade"
],
"author": "Tom Shawver <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TomFrost/Vers/issues"
},
"homepage": "https://github.com/TomFrost/Vers",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dirty-chai": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"standard": "^10.0.3"
}
}