-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "zipson-stream",
"version": "0.3.4",
"description": "Stream support for zipson",
"main": "lib/index.js",
"types": "lib/index.d.js",
"scripts": {
"start": "node .",
"prepare": "npm run build",
"w": "run-p w:*",
"w:compile": "tsc -w 1>/dev/null",
"w:start": "nodemon -q .",
"test": "mocha --require ts-node/register --watch-extensions ts 'test/**/*.ts'",
"testw": "mocha -w --require ts-node/register --watch-extensions ts 'test/**/*.ts'",
"release": "standard-version",
"build": "run-s build:*",
"build:clean": "rm -rf lib",
"build:ts": "tsc"
},
"repository": "jgranstrom/zipson-stream",
"author": "John Granström <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/node": "^9.4.6",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"dummy-json": "^2.0.0",
"mocha": "^5.0.1",
"npm-run-all": "^4.1.2",
"standard-version": "^4.3.0",
"ts-node": "^5.0.0",
"typescript": "^2.7.2"
},
"dependencies": {
"zipson": "^0.2.6"
}
}