forked from ng-harmony-zz/ng-harmony-log
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 2.15 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
{
"name": "ng-harmony-log",
"description": "Logging, Errors, Exceptions",
"version": "0.3.0",
"homepage": "https://github.com/ng-harmony/ng-harmony-log",
"author": {
"name": "joehannes",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/ng-harmony/ng-harmony-log.git"
},
"bugs": {
"url": "https://github.com/ng-harmony/ng-harmony-log/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ng-harmony/ng-harmony-log/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": {
"we-js-logger": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2017": "^6.14.0",
"babel-preset-stage-3": "^6.5.0",
"literate-programming": "^0.8.4"
},
"keywords": [],
"jspm": {
"dependencies": {
"babel-plugin-transform-class-properties": "npm:babel-plugin-transform-class-properties@^6.11.5",
"babel-plugin-transform-decorators-legacy": "npm:babel-plugin-transform-decorators-legacy@^1.3.4",
"babel-preset-es2017": "npm:babel-preset-es2017@^6.14.0"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}