forked from dcntrlzd/pheme-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "pheme-kit",
"version": "0.1.0",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/bn.js": "^4.11.5",
"@types/chai": "^4.1.7",
"@types/jest": "^24.0.18",
"@types/node": "^10.14.4",
"@types/uuid": "^3.4.3",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"bn.js": "^4.11.8",
"eslint": "^v6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.1",
"glob": "^7.1.3",
"go-ipfs-dep": "^0.4.19",
"ipfsd-ctl": "^0.47.2",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"multiaddr-to-uri": "^5.0.0",
"prettier": "^1.16.4",
"prettier-eslint": "^9.0.0",
"rimraf": "^2.6.3",
"truffle": "^5.0.37",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"typescript": "^3.4.2",
"web3-utils": "^1.0.0-beta.52"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"ci:prepare": "yarn cleanup && yarn build-artifacts",
"ci:test": "jest && lerna run test",
"ci:check": "eslint '{packages,e2e}/**/*.{js,ts}'",
"test": "yarn cleanup && yarn build-artifacts && jest && lerna run test",
"tsc": "lerna exec tsc --",
"build-artifacts": "lerna run build-artifacts",
"build": "lerna run prepack --ignore e2e",
"cleanup": "rimraf ./packages/*/lib ./packages/*/build ./packages/*/artifacts",
"lint": "eslint --fix --cache '{packages,e2e}/**/*.{js,ts}'",
"prepublishOnly": "yarn cleanup && yarn build-artifacts && yarn lint && jest && lerna run test"
},
"workspaces": [
"packages/*",
"e2e"
],
"prettier": {
"trailingComma": "es5",
"bracketSpacing": true,
"tabWidth": 2,
"semi": true,
"arrowParens": "always",
"endOfLine": "lf",
"printWidth": 100,
"singleQuote": true
}
}