-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "mock-nodecg",
"version": "1.8.1",
"description": "A mock of some of the NodeCG APIs that can be used in unit tests, for both Node.js and the browser.",
"main": "index.js",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"test": "eslint .",
"prerelease": "npm t",
"release": "standard-version",
"postrelease": "npm publish && git push --follow-tags",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"keywords": [
"nodecg",
"mock",
"test",
"helper",
"unit",
"browser"
],
"author": {
"name": "Alex Van Camp",
"email": "[email protected]",
"url": "https://alexvan.camp/",
"twitter": "vancamp"
},
"license": "MIT",
"devDependencies": {
"clone": "^2.1.1",
"eslint": "^3.19.0",
"eslint-config-xo": "^0.18.2",
"standard-version": "^4.0.0",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8",
"webpack": "^2.6.1"
},
"dependencies": {
"sinon": "^2.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecg/mock-nodecg.git"
},
"bugs": {
"url": "https://github.com/nodecg/mock-nodecg/issues"
},
"eslintConfig": {
"extends": "xo/esnext"
},
"files": [
"index.js",
"src",
"dist"
]
}