-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 923 Bytes
/
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
{
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "npm run bootstrap",
"start": "cd packages/spacedoc && npm start",
"test": "lerna run test",
"test:template": "./packages/spacedoc/bin/spacedoc.js --config test/spacedoc.yml & lite-server"
},
"devDependencies": {
"chai": "^3.5.0",
"lerna": "2.0.0-beta.31",
"lite-server": "^2.2.2",
"mocha": "^3.1.2",
"xo": "^0.20.3"
},
"xo": {
"space": true,
"ignores": [
"packages/*/test/fixtures/**/*.js"
],
"overrides": [
{
"files": ["packages/*/test/**/*.js", "packages/*/test.js"],
"envs": ["node", "mocha"],
"rules": {
"import/no-extraneous-dependencies": "off",
"no-unused-expressions": "off"
}
}
],
"settings": {
"import/core-modules": [
"spacedoc-helpers",
"spacedoc-theme-default"
]
}
}
}