-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "isotope",
"description": "The Atomic toolkit to build your own CSS framework upon.",
"version": "1.0.0-alpha.3",
"license": "MIT",
"author": "Robin van der Vleuten <[email protected]>",
"homepage": "https://github.com/webstronauts/isotope#readme",
"repository": {
"type": "git",
"url": "https://github.com/webstronauts/isotope"
},
"bugs": {
"url": "https://github.com/webstronauts/isotope/issues"
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node-sass src/isotope.scss dist/isotope.css",
"minify": "postcss dist/isotope.css -u cssnano -o dist/isotope.min.css --no-map",
"precommit": "npm run build",
"prepublish": "npm run build",
"test": "npm run build && stylelint src/**/*.scss && immutable-css dist/isotope.css"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"cssnano": "^4.1.8",
"del": "^3.0.0",
"husky": "^0.13.1",
"immutable-css-cli": "^1.1.1",
"node-sass": "^4.11.0",
"postcss-cli": "^6.1.0",
"stylelint": "^7.7.1",
"stylelint-config-standard": "^15.0.0"
}
}