forked from ng-harmony-zz/ng-harmony-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.82 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
{
"name": "ng-harmony-module",
"description": "Kicking off your ng1-porject with Babeltastic styles ...",
"version": "0.2.2",
"homepage": "https://github.com/joehannes/ng-harmony-module",
"author": {
"name": "DI (FH) Johannes Neugschwentner",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/joehannes/ng-harmony-module.git"
},
"bugs": {
"url": "https://github.com/joehannes/ng-harmony-module/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/joehannes/ng-harmony-module/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": {},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-stage-3": "^6.5.0",
"literate-programming": "^0.8.4"
},
"keywords": [],
"jspm": {
"dependencies": {
"angular": "github:angular/bower-angular@^1.5.0",
"angular-ui-router": "github:angular-ui/ui-router@^0.2.18",
"ng-harmony/ng-harmony": "github:ng-harmony/ng-harmony@^0.4.0"
},
"devDependencies": {}
}
}