-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.55 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.55 KB
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
46
47
{
"name": "minesweeper-typescript",
"version": "1.0.0",
"description": "A starting point for a minesweeper kata in typescript",
"main": "index.js",
"scripts": {
"prestart": "npm install",
"test": "mocha test/*.test.ts",
"start": "npm run lint && npm run test:watch",
"test:watch": "npm test -- --watch",
"build": "tsc --pretty",
"build:watch": "tsc --pretty --watch",
"build:web": "webpack --watch",
"live": "live-server",
"web": "npm-run-all --parallel web:ts build:web live",
"web:ts": "watch 'tsc --pretty --outDir dist/trash > tsc.log' src/",
"lint": "tslint \"./src/01_intro.ts\" --formatters-dir=\"./node_modules/tslint-stylish\" --format=\"stylish\" --exclude=\"./test/*.ts\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Montana-Code-School/minesweeper-typescript.git"
},
"author": "Montana Code School",
"license": "MIT",
"bugs": {
"url": "https://github.com/Montana-Code-School/minesweeper-typescript/issues"
},
"homepage": "https://github.com/Montana-Code-School/minesweeper-typescript#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.32",
"chai": "^3.5.0",
"imports-loader": "^0.6.5",
"live-server": "^1.1.0",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.1",
"sinon": "^2.0.0-pre.4",
"ts-loader": "^1.2.2",
"ts-node": "^1.6.0",
"ts-node-warnings": "^1.6.0",
"tslint": "^3.15.1",
"tslint-stylish": "^2.1.0-beta",
"typescript": "^2.0.3",
"watch": "^1.0.1",
"webpack": "^1.13.3"
}
}