-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
32 lines (32 loc) · 916 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
{
"private": true,
"name": "emitty",
"version": "0.0.0",
"description": "A monorepo for @emitty packages",
"license": "MIT",
"engines": {
"node": ">= 8"
},
"devDependencies": {
"@times-components/depend": "2.1.15",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.56",
"@types/sinon": "^7.5.0",
"eslint": "^6.6.0",
"eslint-config-mrmlnc": "^1.0.1",
"lerna": "^3.18.3",
"mocha": "^6.2.2",
"rimraf": "^3.0.0",
"sinon": "^7.5.0",
"typescript": "^3.6.4"
},
"scripts": {
"clean": "lerna run --parallel clean",
"lint": "lerna run --parallel lint",
"lint:dependencies": "depend --lerna . --bail --hint --strategy=conservative",
"compile": "tsc -b ./packages --verbose",
"test": "lerna run --parallel test",
"build": "npm run clean && npm run compile && npm run lint && npm run test",
"watch": "lerna run --parallel watch"
}
}