-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
40
41
42
43
44
{
"name": "tetris",
"version": "1.0.0",
"description": "",
"main": "tetris.js",
"scripts": {
"build": "rm -rf dist; rm -rf public; tsc; webpack",
"add-coverage-ignores": "ts-node scripts/add-coverage-ignores.ts",
"test": "yarn build; yarn add-coverage-ignores; NODE_ENV=test nyc mocha -r source-map-support/register --full-trace 'dist/**/*.test.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^9",
"babel": "^6.23.0",
"babel-loader": "^7.1.4",
"copy-webpack-plugin": "^4.5.1",
"file-loader": "^1.1.11",
"fs": "^0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"js-yaml": "^3.13.1",
"mainloop": "^1.0.3",
"mainloop.js": "^1.0.4",
"mocha": "^5.1.1",
"mocha-loader": "^1.1.3",
"mocha-webpack": "^1.1.0",
"node": "^9",
"nyc": "^11.7.1",
"random-js": "^1.0.8",
"sinon": "^5.0.3",
"ts-loader": "^4.2.0",
"ts-node": "^6.0.2",
"typescript": "^2.8.3",
"url-loader": "^1.0.1",
"vue": "^2.5.16",
"vue-loader": "^15.0.8",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.7.0"
},
"devDependencies": {
"webpack-cli": "^2.1.2"
}
}