-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "uioc",
"version": "1.2.1",
"description": "An IoC Framework",
"main": "dist/bundle.js",
"jsnext:main": "src/main.js",
"maintainers": {
"name": "Exodia",
"email": "d_xinxin@163.com"
},
"repository": {
"type": "git",
"url": "git://github.com/ecomfe/uioc.git"
},
"keywords": [
"ioc",
"di"
],
"scripts": {
"test": "karma start --single-run --browsers PureHeadlessChrome",
"start": "karma start",
"build": "node scripts/build.js",
"doc": "esdoc -c esdoc.json"
},
"files": [
"dist",
"src",
"esdoc.json",
"README.md"
],
"author": {
"name": "Exodia",
"email": "d_xinxin@163.com",
"url": "github.com/Exodia"
},
"contributors": [
"otakustay<otakustay@gmail.com>(http://otakustay.com)",
"ycycwx(https://github.com/ycycwx)",
"strwind(https://github.com/strwind)",
"srhb18(https://github.com/srhb18)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomfe/uioc/issues"
},
"homepage": "https://github.com/ecomfe/uioc",
"devDependencies": {
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.5.0",
"esdoc": "^0.5.2",
"jasmine-core": "^2.6.4",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-requirejs": "^1.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"requirejs": "^2.2.0",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-uglify": "^2.0.1"
},
"dependencies": {
"uaop": "0.0.1-alpha.2"
},
"edp": {
"main": "main"
}
}