-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "buds",
"version": "0.2.18",
"description": "CSS framework following SUIT CSS naming conventions",
"main": "scss/_all.scss",
"scripts": {
"clean:docs": "rm -rf ./docs/.asset-cache",
"serve": "cd ./docs && rake run",
"predeploy": "npm run clean:docs",
"deploy": "cd ./docs && rake deploy",
"precompile": "rm -rf dist/css",
"compile": "gulp compile",
"pretest": "gulp test",
"test": "http-server ./test -p 3000 --cors *",
"precopy": "rm -rf dist/scss && rm -rf dist/package*.json",
"copy": "cp -R src dist/scss && cp package*.json dist",
"prerelease": "npm run copy && npm run compile",
"release": "node ./build/scripts/release.js && cd dist && npm publish",
"bump:major": "npm version major && npm run release",
"bump:minor": "npm version minor && npm run release",
"bump:patch": "npm version patch && npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ourai/buds.git"
},
"author": "Ourai Lin <ourairyu@gmail.com> (http://ourai.ws/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ourai/buds/issues"
},
"homepage": "https://github.com/ourai/buds",
"devDependencies": {
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-cssmin": "^0.2.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-strip-css-comments": "^2.0.0",
"handie": "^1.0.14",
"http-server": "^0.11.1",
"suitcss-base": "^4.0.0",
"suitcss-utils-flex": "^2.0.1",
"suitcss-utils-size": "^2.0.1"
}
}