-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.22 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
73
74
75
76
77
78
79
80
81
{
"name": "spark-sc-site",
"description": "The homepage for Spark SC, refreshed using Spike.",
"version": "0.0.1",
"author": "nahrwl",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/nahrwl/spark-sc-site/issues",
"dependencies": {
"babel-preset-latest": "^6.16.0",
"hard-source-webpack-plugin": "0.2.2",
"image-webpack-loader": "^3.0.0",
"package.json": "^2.0.1",
"postcss-easy-import": "^1.0.1",
"reshape-standard": "^0.4.2",
"spike-css-standards": "^0.1.3",
"spike-page-id": "^0.1.0",
"spike-records": "^0.4.0",
"webpack": "^1.13.3"
},
"devDependencies": {
"ava": "^0.25.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.5.4",
"snazzy": "^5.0.0",
"spike-core": "^0.12.3",
"standard": "^8.6.0",
"stylelint": "^7.6.0",
"stylelint-config-standard": "^15.0.0"
},
"homepage": "https://github.com/nahrwl/spark-sc-site",
"main": "app.js",
"private": true,
"repository": "https://github.com/nahrwl/spark-sc-site",
"scripts": {
"lint": "standard | snazzy ; stylelint '**/*.sss'",
"precommit": "echo 'Running pre-commit checks...' && npm run lint -s",
"pretest": "npm run lint -s",
"test": "NODE_ENV=test ava"
},
"pre-commit": [
"precommit"
],
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"block-closing-brace-empty-line-before": null,
"block-closing-brace-newline-after": null,
"block-closing-brace-newline-before": null,
"block-closing-brace-space-before": null,
"block-opening-brace-newline-after": null,
"block-opening-brace-space-after": null,
"block-opening-brace-space-before": null,
"declaration-block-semicolon-newline-after": null,
"declaration-block-semicolon-space-after": null,
"declaration-block-semicolon-space-before": null,
"declaration-block-trailing-semicolon": null,
"max-empty-lines": 2,
"property-no-unknown": [
true,
{
"ignoreProperties": [
"font-range",
"font-path"
]
}
]
},
"ignoreFiles": [
"node_modules",
"public",
"_cache"
]
},
"standard": {
"ignore": [
"assets/vendor/**/*.js"
]
}
}