forked from mgechev/injection-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "injection-js",
"version": "2.1.0",
"description": "Dependency Injection library for JavaScript and TypeScript",
"main": "injection.bundle.js",
"module": "index.js",
"jsnext:main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mgechev/injection-js.git"
},
"dependencies": {},
"devDependencies": {
"@types/jasmine": "^2.5.41",
"@types/node": "^7.0.2",
"jasmine": "^2.5.3",
"reflect-metadata": "^0.1.9",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"ts-node": "^2.0.0",
"tslint": "^4.3.1",
"typescript": "^2.0.0"
},
"scripts": {
"build": "rimraf dist && tsc && rollup -c rollup.config.js -i dist/index.js > dist/injection.bundle.js && cp package.json dist && ts-node -P tsconfig-ts-node.json tools/cleanup.ts && cp README.md dist",
"build:test": "rimraf dist-test && tsc -p tsconfig-test.json",
"test": "npm run build:test && jasmine"
},
"keywords": [
"DI",
"dependency",
"injection",
"dependency injection",
"injector"
],
"author": "Minko Gechev <[email protected]>",
"license": "MIT"
}