This repository has been archived by the owner on Mar 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
105 lines (105 loc) · 3.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "bemquery-package-boilerplate",
"version": "0.0.0",
"description": "BEMQuery",
"main": "dist/bemquery-package-boilerplate.umd.js",
"jsnext:main": "dist/bemquery-package-boilerplate.js",
"module": "dist/bemquery-package-boilerplate.js",
"scripts": {
"lint": "eslint -c config/eslint/default.json src/**/*.js tests/**/*.js",
"pretest": "npm run lint",
"test": "karma start config/karma/default.js",
"coverage": "codecov",
"precommit": "npm test",
"commitmsg": "commitplease .git/COMMIT_EDITMSG",
"prebuild": "npm test",
"build": "rollup -c config/rollup/umd.js && rollup -c config/rollup/es6.js && rollup -c config/rollup/es5.js",
"build-docs": "jsdoc -c config/jsdoc/default.json ./src",
"publish-docs": "npm run build-docs && git checkout gh-pages && ncp docs/dist ./ && git add -A && git commit -m \"docs(gh-pages): update docs [ci skip]\" && git push origin gh-pages && git checkout master",
"preversion": "npm run build && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags",
"prepublish": "in-publish && npm run build || exit 0"
},
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BEMQuery/bemquery-package-boilerplate.git"
},
"keywords": [
"BEM",
"BEMQuery"
],
"files": [
"dist",
"tonic-example.js"
],
"author": {
"name": "BEMQuery team",
"url": "https://github.com/BEMQuery"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BEMQuery/bemquery-package-boilerplate/issues"
},
"homepage": "https://github.com/BEMQuery/bemquery-package-boilerplate#readme",
"tonicExampleFilename": "tonic-example.js",
"devDependencies": {
"@bemquery/karma-sinon-chai": "^2.0.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"codecov": "^3.0.0",
"commitplease": "^3.1.0",
"cz-conventional-changelog": "^2.0.0",
"docdash": "^0.4.0",
"eslint": "^4.1.0",
"husky": "^0.14.0",
"in-publish": "^2.0.0",
"jsdoc": "^3.4.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.0.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^1.0.1",
"karma-rollup-preprocessor": "^4.0.0",
"lolex": "^2.0.0",
"mocha": "^4.0.0",
"ncp": "^2.0.0",
"rollup": "^0.47.0",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-babili": "^3.0.0",
"rollup-plugin-commonjs": "^8.0.0",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-mockr": "^1.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.11.0",
"uglify-js": "^3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}