-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "ng-harmony-controller",
"description": "Enhanced Controllers",
"version": "0.1.9",
"homepage": "https://github.com/ng-harmony/ng-harmony-controller",
"author": {
"name": "joehannes",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ng-harmony/ng-harmony-controller.git"
},
"bugs": {
"url": "https://github.com/ng-harmony/ng-harmony-controller/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ng-harmony/ng-harmony-controller/blob/master/LICENSE"
}
],
"main": "build/index.js",
"engines": {
"node": ">= 0.10.36",
"npm": ">=1.4.28"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "literate-programming src/ng_harmony.md && npm run modules",
"transpile_amd": "babel --modules amd -e 1 -s -o ./build/modules/amd_module.js ./build/index.js",
"transpile_common": "babel --modules common -e 1 -s -o ./build/modules/common_module.js ./build/index.js",
"transpile_system": "babel --modules system -e 1 -s -o ./build/modules/system_module.js ./build/index.js",
"transpile_umd": "babel --modules umd -e 1 -s -o ./build/modules/umd_module.js ./build/index.js",
"modules": "npm run transpile_amd && npm run transpile_common && npm run transpile_system && npm run transpile_umd"
},
"dependencies": {
"bean": "^1.0.15",
"ng-harmony-core": "^0.1.9",
"ng-harmony-decorator": "^0.3.27",
"ng-harmony-log": "^0.2.0",
"zest": "^0.1.3"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-type-metadata": "^0.4.0",
"babel-preset-es2017": "^6.14.0",
"babel-preset-stage-3": "^6.5.0",
"literate-programming": "^0.8.4",
"remark": "^6.0.0",
"remark-cli": "^2.0.0",
"remark-lint": "^5.0.1",
"remark-lint-code": "^1.0.0",
"remark-lint-code-eslint": "^1.0.1",
"remark-preset-lint-consistent": "^1.0.0",
"remark-preset-lint-recommended": "^1.0.0",
"remark-preset-wooorm": "^1.0.0"
},
"keywords": []
}