-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "jp.tamagotchi.engine.ts",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/pichardoJ/jp.tamagotchi.engine.ts.git",
"author": "<j.pichardo@tuta.io>",
"license": "MIT",
"scripts": {
"format": "prettier --write 'src{,/**}/*.{ts,css}'",
"lint": "tslint 'src/**/*.ts'",
"test": "jest",
"start": "gulp ts && node dist/index.js | bunyan",
"bundle": "yarn format && yarn lint && yarn test && yarn webpack"
},
"devDependencies": {
"@types/bunyan": "^1.8.4",
"@types/jest": "^22.2.3",
"@types/node": "^7.0.5",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.2",
"gulp-uglify": "^3.0.0",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typescript": "^2.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"bunyan": "^1.8.12",
"class-validator": "^0.8.5",
"fndi": "0.3.0",
"grpc": "^1.10.1",
"vm2": "^3.5.2"
}
}