-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.91 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
64
65
66
67
68
69
70
71
{
"name": "ngimport",
"version": "1.0.0",
"description": "Easy to use ES6 imports for $http, $log, and other Angular 1 services",
"main": "./index.js",
"main:esnext": "./index.es2015.js",
"typings": "./index.d.ts",
"scripts": {
"build:es2015": "tsc -d -m es2015 -t es6 && mv ./index.js ./index.es2015.js",
"build:es5": "tsc -m commonjs -m commonjs -t es5",
"build": "npm run clean; npm run lint && npm run build:es2015 && npm run build:es5",
"clean": "rm *.d.ts; rm *.map; rm index.js; rm index.es2015.js rm test.js; exit 0",
"lint": "tslint index.ts",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"tdd": "karma start",
"test": "karma start --single-run",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bcherny/ngimport.git"
},
"keywords": [
"import",
"require",
"angular",
"dependency",
"inject",
"dependency injection",
"di",
"typed",
"typesafe",
"type safe",
"typescript",
"es6",
"es2015",
"interoperable",
"interoperate"
],
"author": "Boris Cherny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcherny/ngimport/issues"
},
"homepage": "https://github.com/bcherny/ngimport#readme",
"devDependencies": {
"@types/angular-mocks": "^1.5.11",
"@types/jasmine": "^2.6.0",
"angular": "^1.6.6",
"angular-mocks": "^1.6.6",
"browserify": "^14.5.0",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-browserify": "^5.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.2.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"watchify": "^3.9.0"
},
"dependencies": {
"@types/angular": "^1.6.34"
},
"peerDependencies": {
"angular": ">=1.5.0"
}
}