-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 868 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
{
"name": "@alexey.kornilov/injector",
"version": "0.3.0",
"description": "Dependency Injector for JavaScript projects.",
"main": "dist/injector.js",
"repository": "https://github.com/kavolorn/Injector",
"author": "Alexey Kornilov <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.2.2",
"eslint": "^3.15.0",
"eslint-loader": "^1.7.0",
"mocha": "^3.2.0",
"webpack": "^2.3.1"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules",
"watch": "NODE_ENV=development webpack --progress --hide-modules --watch",
"test": "NODE_ENV=production babel ./tests --out-dir ./dist && mocha dist/tests"
}
}