-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "speck-entity",
"version": "0.2.1",
"description": "Domain entities with reactive validation",
"main": "lib/index.js",
"scripts": {
"test": "NODE_PATH=./src mocha \"./**/*.spec.js\" --colors --reporter spec",
"test:watch": "npm test -- --watch",
"coverage": "nyc npm test",
"lint": "standard -v \"src/**/*.js\" \"spec/**/*.js\"",
"lint:fix": "standard -v --fix \"src/**/*.js\" \"spec/**/*.js\"",
"prepublish": "babel src --out-dir lib",
"validate": "npm run lint && npm run coverage"
},
"nyc": {
"branches": 95,
"check-coverage": true,
"functions": 95,
"lines": 95,
"statements": 95,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"spec/**/*",
"node_modules/**/*"
]
},
"repository": {
"type": "git",
"url": "https://github.com/scup/speck"
},
"keywords": [
"Javascript",
"Entities",
"React",
"Entities"
],
"author": "Scup",
"license": "MIT",
"bugs": {
"url": "https://github.com/scup/speck/issues"
},
"homepage": "https://github.io/scup/speck",
"standard": {
"globals": [
"describe",
"context",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-env": "^1.6.0",
"lodash": "^4.6.1"
},
"devDependencies": {
"chai": "^4.1.2",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"joi": "^11.0.3",
"mocha": "^3.0.2",
"nodemon": "^1.9.2",
"nyc": "^11.2.1",
"sinon": "^3.3.0",
"standard": "^10.0.3"
}
}