-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.41 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
{
"name": "bemquery",
"version": "0.0.0",
"description": "BEM selector engine",
"main": "dist/bemquery.umd.js",
"jsnext:main": "dist/bemquery.js",
"scripts": {
"lint": "eslint -c config/eslint/default.json src/**/*.js tests/**/*.js",
"pretest": "npm run lint",
"test": "karma start config/karma/default.js",
"pretest-ci": "npm run pretest",
"test-ci": "karma start config/karma/ci.js",
"prebuild": "npm test",
"minify": "uglifyjs ./dist/bemquery.es5.js -o ./dist/bemquery.es5.js --comments=/^/*!/ --source-map=./dist/bemquery.es5.js.map",
"build": "rollup -c config/rollup/umd.js && rollup -c config/rollup/es6.js && rollup -c config/rollup/es5.js && npm run minify",
"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 \"[ci skip] Updated docs.\" && git push origin gh-pages && git checkout master",
"preversion": "npm test",
"postversion": "git push origin && git push origin --tags",
"prepublish": "in-publish && npm run build || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/didnotwant/bemquery.git"
},
"keywords": [
"BEM",
"selector",
"engine"
],
"files": [
"dist",
"tonic-example.js"
],
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/didnotwant/bemquery/issues"
},
"homepage": "https://github.com/didnotwant/bemquery#readme",
"tonicExampleFilename": "tonic-example.js",
"devDependencies": {
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"in-publish": "^2.0.0",
"ink-docstrap": "^1.1.4",
"jsdoc": "^3.4.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^0.1.0",
"karma-json-fixtures-preprocessor": "0.0.6",
"karma-mocha": "^0.2.2",
"karma-rollup-preprocessor": "^2.0.1",
"karma-sinon-chai": "^1.2.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"ncp": "^2.0.0",
"rollup": "^0.26.1",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-mockr": "^1.0.1",
"rollup-plugin-node-resolve": "^1.5.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.6.2"
}
}