forked from remy/bind.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "bind.js",
"description": "Simple data binding for callbacks & HTML (also node.js compatible).",
"main": "lib/bind.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "karma start",
"build": "uglifyjs --mangle --compress -- lib/bind.js > dist/bind.min.js",
"test-node": "mocha test/*.test.js test/**/*.test.js",
"semantic-release": "semantic-release pre && npm run build && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "http://github.com/remy/bind.js.git"
},
"author": "Remy Sharp",
"license": "MIT",
"keywords": [
"data-binding",
"binding",
"engine",
"bind"
],
"readmeFilename": "README.md",
"devDependencies": {
"browserify": "^10.0.0",
"browserify-istanbul": "^0.2.1",
"browserify-shim": "^3.8.6",
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.8",
"karma-cli": "0.0.4",
"karma-commonjs": "0.0.13",
"karma-coverage": "^0.2.6",
"karma-firefox-launcher": "^0.1.4",
"karma-html2js-preprocessor": "^0.1.0",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"karma-sinon": "^1.0.4",
"mocha": "^2.2.4",
"sinon": "^1.14.1",
"uglify-js": "^2.4.20",
"semantic-release": "^4.1.1"
}
}