-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "jambon",
"version": "1.0.0",
"description": "Http listener composed with higher order functions returning immutable request/response context reducers",
"main": "index.js",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"build-watch": "lerna run build-watch --parallel",
"publish": "lerna publish",
"start": "lerna run start --parallel",
"start-watch": "lerna run start-watch --parallel",
"test": "lerna run test",
"test-watch": "lerna run test-watch",
"clean": "lerna clean",
"dev": "concurrently \"npm run build-watch\" \"npm run start-watch\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonatanpedersen/jambon.git"
},
"author": "Jonatan Pedersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonatanpedersen/jambon/issues"
},
"homepage": "https://github.com/jonatanpedersen/jambon#readme",
"dependencies": {
"lerna": "2.11.0"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/mocha": "5.2.5",
"@types/node": "10.5.2",
"chai": "4.1.2",
"concurrently": "3.6.0",
"mocha": "5.2.0",
"ts-node": "7.0.0",
"typescript": "2.9.2"
},
"private": true
}