forked from seagull-js/seagull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 898 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
{
"name": "seagull.js",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"build": "lerna run build",
"changes": "lerna changed",
"publish": "lerna publish",
"test": "NODE_ENV=test lerna run test --parallel",
"test:watch": "NODE_ENV=test lerna run test:watch --parallel"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/node": "^9.6.21",
"chai": "^4.1.2",
"lerna": "^3.4.0",
"mocha": "^5.1.1",
"mocha-typescript": "^1.1.16",
"mock-fs": "^4.5.0",
"mock-require": "^3.0.2",
"nyc": "^12.0.2",
"source-map-support": "^0.5.4",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typedoc": "^0.11.1",
"typedoc-plugin-external-module-name": "^1.1.1",
"typescript": "^3.1.1"
},
"dependencies": {
"chalk": "^2.4.1",
"isomorphic-events": "^0.1.5"
}
}