-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 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
78
79
80
81
{
"name": "component-library",
"description": "An easy way to create HTML styleguide for your project.",
"author": "Dima Snisarenko <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sneas/component-library.git"
},
"keywords": [
"ui",
"component-library",
"styleguide"
],
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/**/*.test.js --compilers js:babel-register",
"posttest": "rimraf **/_tmp",
"prebuild": "rimraf dist",
"build": "babel --out-dir dist --ignore __tests__,*.test.js src --copy-files",
"build:watch": "watch 'npm run build' src sass",
"precompile-demo": "npm run build",
"compile-demo": "gulp --gulpfile demo/gulpfile.js compile",
"predemo": "npm run compile-demo",
"demo": "ws -d ./demo/public -c",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"prepublish-demo": "npm run compile-demo",
"publish-demo": "gh-pages -d demo/public/component-library"
},
"dependencies": {
"bootstrap-sass-namespace": "3.3.7-alpha.6",
"cheerio": "^0.22.0",
"copy-dir": "0.3.0",
"directory-tree": "^1.0.0",
"font-awesome": "^4.6.3",
"highlight.js": "9.9.0",
"jquery": "^3.2.1",
"lodash": "^4.13.1",
"node-modules-resolve": "^1.3.0",
"npm-sass": "^1.3.0",
"nunjucks": "3.0.0",
"smartmenus-namespace": "1.0.1-alpha.5",
"writefile": "^0.2.8"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-2": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"chai-fs": "1.0.0",
"cheerio": "0.22.0",
"commitizen": "2.8.6",
"cz-conventional-changelog": "1.2.0",
"gh-pages": "0.12.0",
"ghooks": "1.3.2",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"local-web-server": "^1.2.6",
"mocha": "3.1.2",
"rimraf": "2.5.4",
"semantic-release": "^6.3.2",
"watch": "1.0.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}