forked from flightjs/flight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "flight",
"version": "1.5.1",
"devDependencies": {
"jscs" : "^1.5.8",
"karma": "~0.12.6",
"karma-cli": "0.0.4",
"karma-jasmine": "~0.1.0",
"karma-requirejs": "~0.2.0",
"karma-chrome-launcher": "~0.1.0",
"karma-ie-launcher": "~0.1.1",
"karma-firefox-launcher": "~0.1.0",
"karma-safari-launcher": "~0.1.1",
"webpack": "^1.11"
},
"scripts": {
"build": "npm run webpack & npm run webpack-minified",
"checkStyle": "jscs lib test",
"prepublish": "npm run build",
"test": "npm run unit && npm run checkStyle",
"unit": "karma start --single-run",
"watch": "karma start",
"webpack": "webpack --progress --colors",
"webpack-minified": "webpack --progress --colors --optimize-minimize --output-file flight.min.js"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "http://github.com/Mendeley/flight.git"
}
}