-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
49 lines (49 loc) · 1.38 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
43
44
45
46
47
48
49
{
"name": "sp2-monorepo-root",
"version": "1",
"private": true,
"description": "Immutable updater of objects using JSON operation. This is the monorepo root and `modules/main` package is the one that is published.",
"homepage": "https://github.com/phenyl/sp2#readme",
"bugs": "https://github.com/phenyl/sp2/issues",
"repository": "phenyl/sp2",
"license": "Apache-2.0",
"author": "Shin Suzuki <[email protected]>",
"engines": {
"npm": ">=6.13.4",
"yarn": ">=1.21.1"
},
"scripts": {
"prepare": "yarn build",
"build": "lerna run build",
"cov-test": "lerna run cov-test",
"clean": "lerna run clean && lerna clean --yes",
"clean-tmp": "lerna run clean",
"commit": "npx git-cz",
"lint": "lerna run lint",
"test": "lerna run test",
"type-check": "lerna run type-check",
"watch": "lerna run watch --parallel"
},
"workspaces": {
"packages": [
"modules/*"
]
},
"devDependencies": {
"@types/mocha": "8.2.2",
"@types/node": "14.14.20",
"@typescript-eslint/parser": "^4.12.0",
"coveralls": "3.1.0",
"eslint": "^7.17.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-typescript": "0.14.0",
"lcov-result-merger": "3.1.0",
"lerna": "3.20.2",
"mocha": "8.2.1",
"nyc": "15.1.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"typescript": "4.3.4"
}
}