-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.36 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": "gimme-ts",
"version": "0.1.0",
"description": "Gimme.ts is an inversion of control container dedicated for TypeScript apps. It relies on custom transforms which allow straightforward injection of dependencies even if they are hidden behind interfaces.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/glob": "^5.0.35",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"chai": "^4.1.2",
"glob": "^7.1.3",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typedoc": "^0.12.0",
"typescript": "^3.0.3"
},
"peerDependencies": {
"typescript": "3.0.0"
},
"scripts": {
"build": "npm run clean-dist && tsc",
"test": "npm run build-tests && mocha ./tests/bin/tests/**/*test.js",
"build-tests": "npm run clean-tests && tsc -p ./tests && node ./tests/bin/tests/build.js",
"build-all": "npm run build && npm run build-tests",
"clean": "npm run clean-dist && npm run clean-tests",
"clean-dist": "rimraf dist/**",
"clean-tests": "rimraf tests/bin/**",
"lint": "./node_modules/.bin/tslint src/**/*.ts tests/**/*.ts -t verbose",
"generate-docs": "rimraf docs/** && typedoc --out ./docs --listInvalidSymbolLinks"
},
"author": "Konrad Powązka",
"license": "MIT"
}