-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 787 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 787 Bytes
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
{
"name": "di.js",
"version": "1.16.1",
"description": "",
"main": "build/di.es5.js",
"scripts": {
"test": "mocha --compilers js:babel/register",
"dev": "mocha --compilers js:babel/register -w",
"es5": "mkdir -p build && babel index.js -s inline -m umd --module-id di -o build/di.es5.js",
"build": "npm run es5 && uglifyjs build/di.es5.js -o build/di.es5.min.js --mangle --screw-ie8 -c join_vars,unsafe,pure_getters",
"prepublish": "npm run build && npm test"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"lodash": "*",
"mocha": "^2.2.5",
"uglify-js": "^2.4.24"
},
"dependencies": {},
"respository": "git@github.com:ftdebugger/di.js.git"
}