-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "devenv",
"version": "1.0.0",
"description": "JS Development Environment",
"main": "./src/index.js",
"scripts": {
"start": "node buildScripts/srcServer.js",
"test": "tsc -p ./ && mocha --reporter progress \"src/**/*.test.js\"",
"lint": "chokidar webpack.config.* src/**/*.ts buildScripts/**/*.ts -c \"tslint src/**/*.ts -t\" --initial"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikewrosey/devEnv.git"
},
"author": "Michael Rose",
"license": "ISC",
"bugs": {
"url": "https://github.com/mikewrosey/devEnv/issues"
},
"homepage": "https://github.com/mikewrosey/devEnv#readme",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.12",
"chai": "^3.5.0",
"chokidar-cli": "^1.2.0",
"express": "^4.15.2",
"jsdom": "^10.1.0",
"mocha": "^3.2.0",
"open": "0.0.5",
"ts-loader": "^2.0.3",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.2",
"webpack": "^2.1.0-beta.21",
"webpack-dev-middleware": "^1.10.2"
}
}