-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.4 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": "swanky-theme",
"description": "Default theme for Swanky",
"license": "MIT",
"author": "Rod Leviton",
"main": "index.js",
"repository": {
"url": "https://github.com/swanky-docs/swanky-theme.git",
"type": "git"
},
"scripts": {
"pre-release": "npm-run-all verify test:coverage build ",
"build": "npm run clean:prod",
"check-coverage": "istanbul check-coverage --statements 0 --branches 0 --functions 0 --lines 0",
"clean:prod": "rimraf dist/",
"commit": "git-cz",
"dev": "npm run verify:watch",
"exact-semver": "exact-semver",
"report-coverage": "cat ./coverage/coverage.json | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run dev",
"test": "npm run test:unit",
"test:check-coverage": "istanbul check-coverage reports/coverage.json --config config/testUnit/istanbul.yml",
"test:coverage": "npm-run-all test:unit:once test:check-coverage --silent",
"test:unit": "chokidar 'test/**/*.js' 'test/**/*.js' -c 'npm run test:unit:once' --initial --silent",
"test:unit:once": "istanbul cover --config config/testUnit/istanbul.yml _mocha -- --opts config/testUnit/mocha.opts",
"verify": "npm run verify:js --silent",
"verify:js": "eslint -c config/verify/.eslintrc \"test/**/*.js\" \"test/**/*.js\" \"config/**/*.js\" && echo ✅ verify:js success",
"verify:js:watch": "chokidar 'test/**/*.js' 'test/**/*.js' 'config/**/*.js' -c 'npm run verify:js' --initial --silent",
"verify:watch": "npm run verify:js:watch --silent"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/release/commitMessageConfig.js"
},
"ghooks": {
"pre-commit": "npm run exact-semver",
"pre-push": "npm-run-all verify test:coverage --silent"
}
},
"dependencies": {
"basscss": "8.0.3",
"postcss": "5.2.17",
"highlightjs": "9.10.0"
},
"devDependencies": {
"chokidar-cli": "1.2.0",
"codecov.io": "0.1.6",
"cz-conventional-changelog": "2.0.0",
"cz-customizable": "5.0.0",
"cz-customizable-ghooks": "1.5.0",
"eslint": "3.19.0",
"eslint-config-defaults": "9.0.0",
"exact-semver": "1.2.0",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"mocha": "3.3.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"semantic-release": "6.3.2"
},
"version": "1.0.0"
}