-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.58 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": "backbone-forms-chosen",
"version": "1.0.3",
"description": "Backbone-Forms chosen editor",
"keywords": [
"backbone-forms",
"chosen",
"editor"
],
"dependencies": {
"chosen-js": "^1.7.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coffee-script": "^1.10.0",
"coveralls": "^3.0.0",
"cucumber": "^3.2.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-coffee-preprocessor": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"mocha": "^4.1.0",
"pug": "^2.0.0-rc.2",
"pug-cli": "^1.0.0-alpha6",
"selenium-webdriver": "^3.4.0",
"uglify-js": "^3.0.16"
},
"peerDependencies":{
"backbone-forms": "^0.14.1"
},
"scripts": {
"test": "karma start && npm run cucumber",
"cucumber": "cucumber.js --compiler coffee:coffee-script/register",
"coveralls": "npm test && cat ./coverage/lcov.info | coveralls",
"build": "npm run build-js; npm run uglify",
"build-js": "coffee --bare --compile --no-header --output . src/bbf-chosen.coffee",
"uglify": "uglifyjs bbf-chosen.js --output bbf-chosen.min.js --compress --mangle",
"build-docs": "pug --out docs demo/*.pug; coffee --bare --compile --no-header --output docs/ demo/index.coffee src/bbf-chosen.coffee"
},
"repository": "tomi77/backbone-forms-chosen",
"main": "bbf-chosen.js",
"author": "Tomasz Jakub Rup",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomi77/backbone-forms-chosen/issues"
},
"homepage": "https://github.com/tomi77/backbone-forms-chosen#README.md"
}