-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 941 Bytes
/
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
{
"name": "training-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha src --recursive",
"start": "tsc -p . -w",
"build": "webpack --progress --profile --colors --display-error-details --display-cached"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PonyLux/training-typescript.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PonyLux/training-typescript/issues"
},
"homepage": "https://github.com/PonyLux/training-typescript#readme",
"dependencies": {},
"devDependencies": {
"ts-loader": "^0.9.5",
"tslint": "^3.15.1",
"typescript": "^2.0.6",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.41",
"chai": "^3.5.0",
"mocha": "^3.1.0"
}
}