forked from kontent-ai/delivery-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 916 Bytes
/
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
{
"name": "kentico-cloud-main",
"private": true,
"author": "richard sustek",
"description": "Kentico Cloud SDKs",
"engines": {
"node": ">= 8"
},
"scripts": {
"typedoc:local": "./node_modules/.bin/typedoc",
"prepare": "lerna bootstrap && npm run lerna:build:all && lerna bootstrap",
"lerna:tslint:check:all": "lerna exec npm run ts-lint:check",
"lerna:tslint:fix:all": "lerna exec npm run ts-lint:fix",
"lerna:build:all": "lerna exec npm run build:all",
"lerna:install:all": "lerna exec npm i",
"lerna:test:all": "lerna exec npm run test:all",
"lerna:test:travis": "lerna exec npm run test:travis",
"lerna:travis": "npm run lerna:install:all && npm run lerna:build:all && npm run lerna:test:travis",
"lerna:publish": "lerna publish",
"lerna:publish:beta": "lerna publish --npm-tag=next"
},
"devDependencies": {
"lerna": "3.10.5",
"typedoc": "0.14.2",
"typescript": "3.2.2"
}
}