This repository has been archived by the owner on Feb 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.59 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
{
"name": "lazyioc",
"version": "1.0.0",
"description": "Lightweight vanilla javascript ioc container",
"main": "bundle/index.js",
"scripts": {
"build:dev": "./node_modules/webpack/bin/webpack.js --config webpack.config.js --progress -w",
"build": "export NODE_SHELL_ENV=production && ./node_modules/webpack/bin/webpack.js --config webpack.config.js --progress ",
"release:fix": "npm run build && npm test && npm version patch",
"release:feat": "npm run build && npm test && npm version minor",
"release:break": "npm run build && npm test && npm version major",
"test": "npx ospec"
},
"keywords": [
"vanilla",
"ioc",
"dependency injection",
"di",
"web",
"apps"
],
"author": "Rahul Gaur",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-react": "^6.24.1",
"bundle-loader": "^0.5.5",
"compression-webpack-plugin": "^1.1.11",
"copy-webpack-plugin": "^4.0.1",
"ospec": "^3.0.1",
"svg-url-loader": "^2.2.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^3.7.1",
"webpack-bundle-analyzer": ">=3.3.2",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {}
}