-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.3 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
{
"private": true,
"devDependencies": {
"@frctl/eslint-config-frctl": "^0.1.3",
"asyncro": "^3.0.0",
"common-tags": "^1.8.0",
"fs-extra": "^8.1.0",
"jest": "^24.9.0",
"lerna": "^3.20.2",
"xo": "^0.25.3"
},
"name": "fractalite",
"scripts": {
"bootstrap": "lerna bootstrap",
"lint:fix": "xo --fix",
"test": "xo && jest --coverage",
"test:watch": "xo && jest --watch",
"test:ci": "jest",
"test:generate:components": "node ./test/helpers/generate-components",
"fractalite:build": "cd packages/fractalite && npm run build",
"fractalite:dev": "cd packages/fractalite && npm run dev",
"demo:vue": "npm run bootstrap && cd demos/vue && npm run start",
"demo:nunjucks": "npm run bootstrap && cd demos/nunjucks && npm run start",
"demo:nunjucks:build": "npm run bootstrap && cd demos/nunjucks && npm run build",
"demo": "npm run demo:nunjucks",
"demo:build": "npm run demo:nunjucks:build"
},
"xo": {
"extends": "@frctl/eslint-config-frctl",
"prettier": true,
"spaces": true,
"rules": {
"unicorn/catch-error-name": [
"error",
{
"name": "err"
}
]
},
"ignores": [
"**/dist/*",
"**/assets/*",
"**/test/**",
"**/*.test.js",
"./demos/**"
]
}
}