-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1010 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
{
"name": "concise-<addon>",
"version": "0.1.0",
"description": "<your add-on description>",
"repository": {
"type": "git",
"url": "git+https://github.com/<user>/concise-<repository>.git"
},
"keywords": [
"css",
"concise",
"sass",
"framework",
"add-on",
"<keyword>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/<user>/concise-<repository>/issues"
},
"homepage": "https://github.com/<user>/concise-<repository>#readme",
"scripts": {
"build": "node-sass dist.scss dist/concise-<addon>.css | postcss --use autoprefixer < dist/concise-<addon>.css -b \"last 2 versions\" | cssmin > dist/concise-<addon>.min.css",
"build:watch": "watch \"npm run build\" src",
"stats": "stylestats dist/concise-<addon>.css"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"concise.css": "^3.3.0",
"cssmin": "^0.4.3",
"node-sass": "^3.4.2",
"postcss-cli": "^2.5.1",
"stylestats": "^6.3.0",
"watch": "^0.17.1"
}
}