-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.39 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
{
"name": "ever-sdk-js-monorepo",
"private": true,
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/tonlabs/ever-sdk-js.git"
},
"scripts": {
"clean": "git clean -dfqX -- ./node_modules **/{dist,node_modules}/ ./packages/*/tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.build.json",
"compile:clean": "tsc --build tsconfig.build.json --clean",
"watch": "tsc --build tsconfig.build.json --watch",
"release:version-bump": "lerna version",
"release:version-bump:server": "npm run release:version-bump -- --force-publish=ton-client,ton-client-node-js-bridge",
"release:start-ci-publish": "node -p '`Publish (dist-tag:${process.env.TON_CLIENT_DIST_TAG || \"latest\"})`' | git tag -F - \"publish/$(date -u '+%Y%m%d%H%M%S')\" && git push origin \"$(git describe --match='publish/*' --tags --exact-match HEAD)\"",
"postinstall": "lerna run prepare && npm run compile",
"test": "jest --verbose",
"test:clean": "jest --clearCache",
"test:watch": "jest --verbose --watchAll",
"testonly": "npm test",
"test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit"
},
"engines": {
"node": ">=6"
},
"devDependencies": {
"dotenv": "8.2.0",
"jest": "26.5.2",
"lerna": "3.22.1",
"typescript": "4.0.3"
}
}