-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
107 lines (107 loc) · 3.27 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@spacehq/sdk",
"version": "0.0.0",
"description": "Space SDK",
"main": "packages/sdk",
"scripts": {
"docs": "rm -rf docs markdown temp && node scripts/make-docs.js && mkdir -p docs && cp -r markdown/* docs/",
"serve:docs": "npm run docs && cd website && npm run start",
"build:docs": "npm run docs && cd website && npm install && npm run build",
"bootstrap": "lerna bootstrap",
"bumpversion": "npm run build && npm run build:docs && lerna version --no-push --no-git-tag-version",
"publish": "lerna publish",
"publish:from": "lerna publish from-package",
"clean": "lerna clean && lerna run clean",
"build": "lerna run build",
"lint": "eslint --ext .js,.ts packages/*/src/* integration_tests",
"lint:fix": "eslint --fix --ext .js,.ts packages/*/src/* integration_tests",
"outdated": "lerna exec -- npx ncu",
"test": "npm run test:node && npm run test:browser",
"test:docs": "typescript-docs-verifier --input-files=`find docs -type f -name '**.md'`",
"test:node": "TS_NODE_FILES=true mocha --exit",
"test:browser": "lerna run --stream test:browser",
"test:integration": "polendina --cleanup --timeout 100000 integration_tests/**/*.spec.ts --webpack-config webpack.test.js",
"space:check": "lerna exec -- npx ncu '/^@spacehq/.*$/'",
"space:upgrade": "lerna exec -- npx ncu -u '/^@spacehq/.*$/'"
},
"resolutions": {
"npm-packlist": "2.1.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"json"
],
"all": true
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/FleekHQ/space-sdk.git"
},
"bugs": {
"url": "https://github.com/FleekHQ/space-sdk/issues"
},
"keywords": [
"space",
"IPFS",
"p2p"
],
"author": "FleekHQ",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@microsoft/api-documenter": "^7.8.42",
"@microsoft/api-extractor": "^7.9.13",
"@types/browser-or-node": "^1.2.0",
"@types/chai": "^4.2.5",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^7.0.1",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"browser-or-node": "^1.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"dotenv": "^8.2.0",
"dotenv-webpack": "^6.0.0",
"eslint": "^6.7.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-strict": "^14.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.1",
"lerna": "^3.19.0",
"mocha": "^7.2.0",
"npm-check-updates": "^9.0.4",
"nyc": "^15.1.0",
"polendina": "^1.0.0",
"prettier": "^2.1.1",
"prettier-eslint": "^11.0.0",
"prettier-plugin-organize-imports": "^1.1.1",
"source-map-support": "^0.5.19",
"ts-loader": "^7.0.2",
"ts-mocha": "^7.0.0",
"ts-mockito": "^2.6.1",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"typedoc": "0.17.7",
"typescript": "^3.7.2",
"typescript-docs-verifier": "^1.1.2"
},
"private": true,
"workspaces": [
"packages/*"
]
}