-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.67 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
{
"name": "jbit",
"version": "1.1.2",
"description": "A simple jQuery like DOM Traverse lightweight library written in ES6.",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0"
},
"jsnext:main": "src/index.js",
"main": "dist/jbit.js",
"scripts": {
"start": "rollup -c rollup.config.js -m -w",
"build": "rollup -c rollup.config.js -m",
"build:minify": "NODE_ENV=production rollup -c rollup.config.js -o dist/jbit.min.js",
"test": "karma start --single-run",
"test:w": "karma start",
"docs": "documentation readme src/index.js --section API -q",
"release": "npm run build && npm run build:minify && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"files": [
"src",
"dist"
],
"repository": "vfreitas-/jBit",
"keywords": [
"dom",
"traverse",
"lightweight",
"es6"
],
"homepage": "https://github.com/vfreitas-/jBit",
"authors": [
"Vitor Freitas <vitor_freitas_b@hotmail.com>"
],
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"documentation": "^4.0.0-beta.18",
"eslint": "^3.14.0",
"karma": "^1.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-rollup-plugin": "^0.2.4",
"mocha": "^3.2.0",
"rollup": "^0.36.4",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-coverage": "^0.1.4",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0"
}
}