-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 855 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
{
"name": "node_bytepacking",
"version": "1.0.0",
"description": "Byte packing library for lightweight messaging and serialization protocol",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:clean": "rimraf ./build/*",
"build:ts": "tsc",
"build:movetemplates": "mkdir .\\build\\templates && copy .\\templates\\* .\\build\\templates",
"prebuild": "npm run build:clean",
"build": "npm run build:ts && npm run build:movetemplates"
},
"author": "Dustin Ewan",
"license": "ISC",
"dependencies": {
"@types/ejs": "^2.3.33",
"@types/minimist": "^1.2.0",
"@types/node": "^6.0.58",
"@types/source-map-support": "^0.2.28",
"ejs": "^2.5.5",
"minimist": "^1.2.0",
"source-map-support": "^0.4.8"
},
"devDependencies": {
"rimraf": "^2.5.4"
}
}