-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.34 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
{
"name": "ng-injector",
"version": "0.4.5",
"description": "Injector decorator for writing angular 1.x with ES6/TypeScript",
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"scripts": {
"build_cjs": "rm -rf ./lib/cjs && ./node_modules/.bin/tsc src/index.ts ./typings/index.d.ts -m commonjs --outDir lib/cjs --sourcemap --sourceRoot src --target ES5 -d --diagnostics --pretty --experimentalDecorators --noImplicitAny --suppressImplicitAnyIndexErrors",
"build_es6": "rm -rf ./lib/es2015 && ./node_modules/.bin/tsc src/index.ts ./typings/index.d.ts --outDir lib/es2015 --sourcemap --sourceRoot src --target ES2015 -d --diagnostics --pretty --experimentalDecorators --noImplicitAny --suppressImplicitAnyIndexErrors",
"build_umd": "rm -f ./lib/injector* && ./node_modules/.bin/ts-node ./tools/build/bundle.ts",
"build_test": "rm -rf www && ts-node tools/build/build_test.ts && cp test/index.html www",
"build_all": "npm run build_cjs && npm run build_es6 && npm run build_umd && npm run build_test",
"watch": "./node_modules/.bin/ts-node ./tools/build/watch.ts",
"serve": "./node_modules/.bin/ts-node ./tools/tasks/serve.ts",
"lint": "./node_modules/.bin/tslint -c ./tslint.json ./src/**/*.ts ./tools/build/**/*.ts ./tools/tasks/**/*.ts",
"test": "./node_modules/.bin/mocha-phantomjs test/index.html"
},
"files": [
"lib",
"src",
"typings.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Brooooooklyn/angular1.x-injector.git"
},
"keywords": [
"Angular",
"Angular.js",
"Angularjs",
"Injector",
"Decorator"
],
"author": "lynweklm@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brooooooklyn/angular1.x-injector/issues"
},
"homepage": "https://github.com/Brooooooklyn/angular1.x-injector#readme",
"devDependencies": {
"angular": "^1.5.3",
"angular-mocks": "1.5.0",
"babel-preset-es2015-rollup": "^1.1.1",
"browser-sync": "^2.11.2",
"chai": "^3.5.0",
"ionic-release": "^1.2.4",
"mocha": "^2.4.5",
"mocha-phantomjs": "^4.0.2",
"rollup": "^0.25.6",
"rollup-plugin-babel": "^2.4.0",
"ts-loader": "^0.8.1",
"ts-node": "^0.7.1",
"tsd": "^0.6.5",
"tslint": "^3.6.0",
"typescript": "^1.8.9",
"typings": "^1.3.1",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14"
}
}