-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 726 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 726 Bytes
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
{
"name": "TypescriptDependencyInjection",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "node_modules/.bin/tsc",
"clean": "rm -f *.js",
"lint": "node_modules/.bin/tslint tests.ts index.ts",
"test": "npm run clean && npm run build && npm run lint && npm run test-node",
"test-node": "node_modules/.bin/mocha tests.js",
"test-browser": "webpack tests.js browser-tests.js && open browser-tests.html"
},
"author": "Matt York",
"license": "ISC",
"dependencies": {
"reflect-metadata": "^0.1.1"
},
"devDependencies": {
"chai": "^3.2.0",
"mocha": "^2.3.2",
"tslint": "^2.5.0",
"typescript": "^1.6.2",
"webpack": "^1.12.2"
}
}