-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpackage.json
40 lines (40 loc) · 1.4 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
{
"name": "@ringcentral/mono",
"version": "4.0.0",
"scripts": {
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap --no-ci",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"start": "npm run build && npm run start:quick",
"start:quick": "dotenv lerna run start -- --parallel",
"build": "lerna run build --concurrency=1 --stream",
"test": "lerna run test --concurrency=1 --stream",
"test:quick": "lerna run test:quick --concurrency=1 --stream",
"test:coverage": "cat */coverage/lcov.info | coveralls",
"publish:release": "lerna publish --tag-version-prefix=\"\" --force-publish=* --no-push --no-git-tag-version",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint --fix",
"lint:all": "npm run lint './*/src/**/*.ts*'",
"lint:staged": "lint-staged"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-js.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ringcentral/ringcentral-js/issues"
},
"homepage": "https://github.com/ringcentral/ringcentral-js#readme",
"dependencies": {
"coveralls": "3.0.2",
"dotenv-cli": "1.4.0",
"eslint": "5.8.0",
"eslint-config-ringcentral-typescript": "0.1.0",
"husky": "1.1.3",
"lerna": "3.4.3",
"lint-staged": "8.0.4",
"typescript": "3.5.1"
}
}