-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
31 lines (31 loc) · 1.66 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
{
"private": true,
"name": "kinvey",
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "npm run test-unit && npm run test-integration",
"test-unit": "npm run test-unit:js && npm run test-unit:react-native",
"test-unit:js": "lerna run build --scope kinvey-js-sdk --stream && lerna run test --scope kinvey-js-sdk --stream",
"test-unit:react-native": "lerna run build --scope kinvey-react-native-sdk --stream && lerna run test --scope kinvey-react-native-sdk --stream",
"test-integration": "npm run test-integration:html5 && npm run test-integration:nativescript && npm run test-integration:node && npm run test-integration:react-native",
"test-integration:html5": "cd tests/integration && npm i && cd html5 && npm i --no-audit && npm test",
"test-integration:html5-debug": "cd tests/integration && npm i && cd html5 && npm i --no-audit && npm run test-debug",
"test-integration:nativescript": "cd tests/integration && npm i && cd nativescript && npm i --no-audit && npm test",
"test-integration:react-native": "cd tests/integration && npm i && cd react-native && npm i --no-audit && npm test",
"test-integration:node": "cd tests/integration && npm i && cd node && npm i --no-audit && npm test",
"test-integration:node-debug": "cd tests/integration && npm i && cd node && npm i --no-audit && npm run test-debug"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.0.2",
"husky": "3.0.4",
"lerna": "3.16.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}