-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "typedin",
"version": "1.0.0",
"description": "Simple yet powerful library for dependency injection in TypeScript.",
"main": "./lib/typedin.min.js",
"typings": "./lib/typedin.d.ts",
"scripts": {
"mocha": "mocha -r ts-node/register src/**/*.test.ts",
"compile": "tsc -p tsconfig.json",
"test": "npm run compile && npm run mocha",
"docs": "typedoc lib/typedin.d.ts --readme README.md --out ./docs/ --tsconfig tsconfig.prod.json --excludePrivate --excludeNotExported --excludePrivate --excludeNotExported --excludeExternals",
"build": "tsc -p tsconfig.prod.json && uglifyjs lib/typedin.js -m -c -o lib/typedin.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PFight/typedin.git"
},
"files": [ "src", "lib", "LICENSE", "README.md" ],
"keywords": [
"di",
"typescript",
"dependency",
"injection",
"typescript",
"decorators",
"metadata"
],
"author": "PFight <[email protected]> (https://github.com/PFight)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PFight/typedin/issues"
},
"homepage": "https://github.com/PFight/typedin#readme",
"dependencies": {
"reflect-metadata": "^0.1.10"
},
"devDependencies": {
"chai": "^4.1.1",
"mocha": "^3.5.0",
"ts-node": "^3.3.0",
"typedoc": "^0.8.0",
"typings": "^2.1.1",
"uglify-js": "^3.0.27"
}
}