forked from kintone/js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 976 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 976 Bytes
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
{
"name": "@kintone/js-sdk",
"version": "1.0.0",
"description": "packages for kintone customizations",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"lint": "lerna run lint --stream",
"initial:release": "run-s lint build && lerna publish from-package --conventional-commits",
"release": "run-s lint build && lerna publish --conventional-commits",
"test": "lerna run test --stream"
},
"repository": {
"type": "git",
"url": "https://github.com/kintone/js-sdk.git"
},
"keywords": [
"kintone"
],
"author": "kintone",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@cybozu/eslint-config": "^8.1.0",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"lerna": "^3.19.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
}
}