-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
{
"private": true,
"devDependencies": {
"@supportclass/tsconfig-nodecg-client": "^1.0.2",
"@supportclass/tsconfig-nodecg-server": "^1.0.2",
"@types/clone": "^0.1.30",
"bower": "^1.8.8",
"copyfiles": "^1.2.0",
"coveralls": "^3.0.4",
"del": "^3.0.0",
"eslint": "^4.2.0",
"eslint-config-xo": "^0.18.2",
"eslint-plugin-ava": "^4.2.0",
"eslint-plugin-html": "^3.1.0",
"fs-extra": "^4.0.1",
"lerna": "^3.22.1",
"make-dir": "^1.0.0",
"nodecg": "^1.7.2",
"nodecg-cli": "~6.0.3",
"nyc": "^11.0.3",
"sinon": "^3.0.0",
"tslib": "^1.9.3",
"typescript": "^3.2.1",
"weallbehave": "^1.2.0",
"weallcontribute": "^1.0.8"
},
"author": {
"name": "Alex Van Camp",
"email": "[email protected]",
"url": "https://alexvan.camp/",
"twitter": "vancamp"
},
"scripts": {
"move-reports": "node scripts/move-reports.js",
"report": "npm run move-reports && nyc report --reporter=html --reporter=text",
"coverage": "npm run move-reports && nyc report --reporter=text-lcov | coveralls",
"pretest": "eslint *.js packages/**/*.js packages/**/*.html",
"test": "lerna run test",
"postinstall": "lerna bootstrap",
"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'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecg/nodecg-obs.git"
},
"bugs": {
"url": "https://github.com/nodecg/nodecg-obs/issues"
},
"eslintConfig": {
"extends": "xo/esnext",
"rules": {
"new-cap": [
2,
{
"capIsNewExceptions": [
"nodecg.Replicant"
]
}
]
},
"plugins": [
"html"
]
},
"nyc": {
"reporter": [
"html",
"text"
]
}
}