-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "fixd",
"version": "1.0.1",
"description": "Test fixture utility",
"main": "fixd.js",
"scripts": {
"test": "mocha",
"test:watch": "nodemon --exec \"mocha || exit 1\"",
"cover": "istanbul cover _mocha",
"lint": "standard --fix --verbose",
"push:release": "git push origin master && git push --tags",
"release:patch": "npm run lint && npm test && npm version patch && npm run push:release && npm publish",
"release:minor": "npm run lint && npm test && npm version minor && npm run push:release && npm publish",
"release:major": "npm run lint && npm test && npm version major && npm run push:release && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechnologyAdvice/fixd.git"
},
"keywords": [
"object",
"freeze",
"immutable",
"test",
"fixture"
],
"author": "TechnologyAdvice",
"license": "ISC",
"bugs": {
"url": "https://github.com/TechnologyAdvice/fixd/issues"
},
"homepage": "https://github.com/TechnologyAdvice/fixd#readme",
"devDependencies": {
"chai": "^4.0.2",
"dirty-chai": "^1.2.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"standard": "^10.0.2"
},
"standard": {
"ignore": [
"coverage"
],
"env": {
"node": true,
"mocha": true
}
},
"types": "fixd.d.ts",
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}