forked from Watson-Personal-Assistant/developer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "docs-starter",
"version": "1.0.1",
"description": "A Jekyll framework for quickly building docs.",
"main": "src/build.js",
"scripts": {
"postinstall": "bower install && npm run build",
"build": "npm run styles",
"styles": "postcss -u postcss-import -u postcss-nested -u postcss-cssnext -u cssnano -o assets/css/main.css src/css/main.css",
"watch": "npm run -s watch:styles & npm run -s watch:scripts & npm run -s watch:livereload",
"watch:styles": "postcss -w -u postcss-import -u postcss-nested -u postcss-cssnext -u cssnano -o assets/css/main.css src/css/main.css",
"watch:scripts": "rollup -c --watch",
"watch:livereload": "livereload _site/",
"dev": ".bin/develop",
"test": "npm run --silent test:eslint",
"test:eslint": "eslint src/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "[email protected]:someone/bluemix-docs.git"
},
"author": "someone",
"license": "ISC",
"devDependencies": {
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"bower": "^1.8.0",
"commitizen": "^2.9.2",
"cssmin": "^0.4.3",
"cssnano": "^3.8.0",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.12.0",
"livereload": "^0.6.0",
"postcss": "^5.2.5",
"postcss-cli": "^2.6.0",
"postcss-cssnext": "^2.8.0",
"postcss-import": "^8.1.3",
"postcss-nested": "^1.0.0",
"rollup": "^0.37.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^6.0.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"validate-commit-msg": "^2.8.2"
},
"dependencies": {
"cssnano": "^3.8.0",
"postcss-cli": "^2.6.0",
"ramda": "^0.22.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}