-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.43 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.43 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "root",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"forge/*",
"did/*",
"swap/*",
"examples/*"
],
"author": {
"name": "wangshijun",
"email": "shijun@arcblock.io",
"url": "https://github.com/wangshijun"
},
"devDependencies": {
"eslint": "5.3.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "latest",
"husky": "^2.7.0",
"js2dts": "^0.3.3",
"jsdoc": "^3.6.11",
"lerna": "^3.22.1",
"lint-staged": "^7.3.0",
"prettier": "^1.19.1",
"remark-cli": "^5.0.0",
"remark-preset-github": "^0.0.9"
},
"repository": {
"type": "git",
"url": "git@github.com:ArcBlock/forge-js.git"
},
"remarkConfig": {
"plugins": [
"preset-github",
[
"validate-links",
{
"repository": "ArcBlock/forge-js"
}
]
]
},
"lint-staged": {
"*.{js,jsx,mjs,ts,tsx,css,less,scss,json,graphql}": [
"prettier --write",
"git add"
]
},
"scripts": {
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"build": "lerna run clean && lerna run build",
"clean": "lerna clean",
"test": "CI=1 lerna run test",
"coverage": "CI=1 lerna run coverage"
},
"dependencies": {
"axios": "^0.19.2"
},
"resolutions": {
"bn.js": "5.1.3",
"elliptic": "6.5.3"
}
}