forked from kintone/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
50
51
52
53
54
55
{
"name": "@kintone/js-sdk",
"version": "1.0.0",
"description": "packages for kintone customizations",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"prebuild": "lerna run prebuild --parallel",
"build": "tsc --build packages --force",
"postbuild": "lerna run postbuild --parallel",
"lint": "lerna run lint --parallel",
"preinitial:release": "yarn prerelease",
"initial:release": "lerna publish from-package --conventional-commits",
"prerelease": "npm-run-all -s build -p lint test",
"release": "lerna publish --conventional-commits --create-release github",
"pretest": "jest",
"start": "yarn build --watch",
"test": "lerna run test --parallel",
"pretest:ci": "yarn pretest",
"test:ci": "lerna run test:ci --stream"
},
"repository": {
"type": "git",
"url": "https://github.com/kintone/js-sdk.git"
},
"keywords": [
"kintone"
],
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@cybozu/eslint-config": "^17.0.3",
"@types/jest": "^29.0.3",
"@types/node": "^13.13.52",
"babel-jest": "^29.0.3",
"comment-json": "^4.2.3",
"eslint": "^8.23.1",
"jest": "^29.0.3",
"lerna": "^5.5.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {}
}