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 0
/
package.json
107 lines (107 loc) · 3.22 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
106
107
{
"name": "bemquery-dom-events",
"version": "0.1.6",
"description": "BEMQuery dom events module",
"main": "dist/bemquery-dom-events.umd.js",
"jsnext:main": "dist/bemquery-dom-events.js",
"module": "dist/bemquery-dom-events.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-dom-events.git"
},
"keywords": [
"BEM",
"BEMQuery",
"DOM",
"events"
],
"files": [
"dist",
"tonic-example.js"
],
"author": {
"name": "BEMQuery team",
"url": "https://github.com/BEMQuery"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/BEMQuery/bemquery-dom-events/issues"
},
"homepage": "https://github.com/BEMQuery/bemquery-dom-events#readme",
"tonicExampleFilename": "tonic-example.js",
"devDependencies": {
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"commitplease": "^2.7.2",
"cz-conventional-changelog": "^1.2.0",
"docdash": "^0.4.0",
"eslint": "^3.0.1",
"husky": "^0.13.1",
"in-publish": "^2.0.0",
"jsdoc": "^3.4.0",
"karma": "^1.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"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": "^3.0.1",
"karma-sinon-chai": "^1.2.0",
"lolex": "^1.4.0",
"mocha": "^3.0.2",
"ncp": "^2.0.0",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-mockr": "^1.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-babili": "^1.0.3",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}