forked from stacks-archive/clarity-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "clarity-monorepo-wrapper",
"private": true,
"version": "0.0.0",
"description": "Monorepo for the Clarity Javascript SDK",
"keywords": [],
"author": "Blockstack <[email protected]> (https://blockstack.com/)",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"scripts": {
"version-bump": "lerna version",
"pub": "lerna publish from-package",
"prepare": "lerna bootstrap",
"clean": "lerna run clean && lerna clean --yes",
"build": "lerna run build",
"rebuild": "npm run clean && npm run prepare && npm run build",
"test": "lerna run test --stream --concurrency 1",
"test-skip-slow": "cross-env SKIP_SLOW_TESTS=true npm run test",
"lint": "lerna run lint",
"lint-fix": "lerna run lint-fix",
"codecov-upload": "codecov"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/node": "^10.14.8",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"fs-extra": "^8.1.0",
"lerna": "^3.14.1",
"typescript": "^3.5.1"
}
}