-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.23 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": "seagull.js",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"changes": "lerna changed",
"publish": "lerna publish --force-publish",
"publish:patch": "lerna publish patch --yes --force-publish",
"publish:minor": "lerna publish minor --yes --force-publish",
"publish:major": "lerna publish major --yes --force-publish",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"test:watch": "lerna run test:watch --parallel"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10",
"@types/node-fetch": "^2.3.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"lerna": "^3.4.0",
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"mock-fs": "^4.5.0",
"mock-require": "^3.0.2",
"node-fetch": "^2.6.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.4",
"tslint": "^5.13.1",
"typedoc": "^0.16.7",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^3.4.1"
},
"dependencies": {
"ts-node": "^6.1.0",
"chalk": "^2.4.1",
"isomorphic-events": "^0.1.5"
}
}