-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "coderoom",
"version": "0.0.0-semantically-released",
"author": "Sergey Goliney <[email protected]> (http://goliney.com)",
"description": "Code snippets preview generator",
"keywords": [
"coderoom"
],
"license": "MIT",
"main": "./dist/coderoom",
"bin": {
"coderoom": "./dist/bin/coderoom.js"
},
"repository": {
"type": "git",
"url": "https://github.com/goliney/coderoom.git"
},
"dependencies": {
"commander": "2.9.0",
"common-path-prefix": "1.0.0",
"fs-extra": "0.26.7",
"glob": "7.0.5",
"handlebars": "4.0.5",
"lodash": "4.14.2",
"normalize-path": "2.0.1"
},
"devDependencies": {
"babel-cli": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-2": "6.22.0",
"babel-register": "6.23.0",
"chai": "3.5.0",
"codecov.io": "0.1.6",
"commitizen": "2.8.5",
"cz-conventional-changelog": "1.1.7",
"eslint": "2.13.1",
"ghooks": "1.3.2",
"istanbul": "^1.0.0-alpha",
"mocha": "2.5.3",
"mock-fs": "4.2.0",
"node-sass": "3.8.0",
"semantic-release": "4.3.5"
},
"files": [
"dist"
],
"scripts": {
"build": "./node_modules/.bin/babel lib -d dist --copy-files && npm run sass",
"sass": "./node_modules/.bin/node-sass lib/templates/default/scss/base.scss dist/templates/default/static/css/base.css --source-map=true",
"commit": "git-cz",
"test": "./node_modules/.bin/babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/.bin/_mocha -- -R spec",
"test:watch": "mocha ./test/*.spec.js -w --compilers js:babel-register",
"eslint": "node node_modules/eslint/bin/eslint.js */*",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"example": "node ./dist/bin/coderoom.js ./example/source/ ./example/build"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run eslint"
}
}
}