-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.94 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.94 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
{
"name": "fetchline-monorepo",
"private": true,
"scripts": {
"setup": "yarn && yarn bootstrap",
"postinstall": "husky install",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"test:node": "lerna run test:node",
"test:deno": "lerna run test:deno",
"test": "yarn run test:node && yarn run test:deno",
"test:node:local": "lerna run test:node:local",
"test:deno:local": "lerna run test:deno:local",
"test:local": "yarn run test:node:local && yarn run test:deno:local",
"clean:nodemodules": "lerna clean",
"clean:dist": "rimraf packages/**/dist",
"clean:buildcache": "rimraf packages/**/buildcache",
"rebuild": "yarn run clean:buildcache && yarn run build",
"prepublishOnly": "yarn run rebuild",
"publishall": "lerna publish",
"copyreadme": "copyfiles README.md packages/fetchline && copyfiles README.md packages/nodefetchline && copyfiles README.md packages/isomorphic-fetchline && copyfiles README.md packages/naivefetchline && copyfiles README.md packages/getfileline && copyfiles README.md packages/readlineiter"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"ava": "^3.15.0",
"copyfiles": "^2.4.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.0.9",
"lerna": "^3.22.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.16",
"ts-node": "^9.1.1",
"typescript": "^4.1.4",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"workspaces": [
"packages/fetchline",
"packages/nodefetchline",
"packages/isomorphic-fetchline",
"packages/naivefetchline",
"packages/getfileline",
"packages/readlineiter",
"packages/fetchline-allpkgtest"
]
}