-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
{
"name": "normandy-css",
"version": "3.0.1",
"description": "Normandy CSS boilerplate and guidelines",
"keywords": [
"bem",
"css",
"itcss",
"oocss",
"sass",
"scss",
"smacss"
],
"homepage": "https://github.com/calidae/normandy-css",
"repository": {
"type": "git",
"url": "git://github.com/calidae/normandy-css.git"
},
"license": "MIT",
"author": "Adrià Fontcuberta <[email protected]> (https://afontcu.dev)",
"contributors": [
"Xavier Pregona <[email protected]>",
"Oriol Ferràndez Grau <[email protected]> (https://www.ferrandez.cat)",
"Marc Salat <[email protected]>",
"Kilian Cabrera <[email protected]>"
],
"main": "scss/main.scss",
"scripts": {
"dev": "gulp watch",
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"docs:lint": "prettier --write \"docs/**/*.{js,json,css,scss,vue,md}\"",
"lint": "gulp stylelint",
"mocha": "mocha --reporter min",
"prepare": "npm test && gulp",
"sass": "gulp sass",
"start": "npm run dev",
"test": "npm run lint && npm run mocha"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"docs/**/*.{js,json,css,scss,vue,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"sass-mq": "^5.0.0"
},
"devDependencies": {
"@vue/eslint-config-prettier": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-vue": "^4.7.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-stylelint": "^8.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^3.5.3",
"node-sass": "^4.10.0",
"prettier": "^1.15.2",
"sass": "^1.14.3",
"sass-loader": "^7.1.0",
"sass-true": "^4.0.0",
"stylelint": "^9.8.0",
"stylelint-config-sass-guidelines": "^5.2.0",
"stylelint-scss": "^3.4.0",
"vuepress": "^1.0.0-alpha.22"
}
}