-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 994 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
36
{
"name": "nvk_test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -r dist",
"debug": "tsc",
"test": "tsc --noEmit",
"build": "npm run clean && npm run test && gulp build",
"start": "npm run build && node dist/index.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/node": "^12.0.10",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-concat": "^2.6.1",
"gulp-tslint": "^8.1.4",
"merge-stream": "^2.0.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"dependencies": {
"nvk": "^0.5.8"
}
}