-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.52 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.52 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
{
"name": "filesrocket",
"private": true,
"author": {
"name": "Ivan Zaldivar",
"url": "https://github.com/thebug404"
},
"bugs": {
"url": "https://github.com/Filesrocket/filesrocket/issues"
},
"repository": {
"url": "https://github.com/Filesrocket/filesrocket"
},
"homepage": "https://filesrocket.com/",
"workspaces": [
"packages/*"
],
"scripts": {
"install": "lerna bootstrap",
"eslint": "eslint \"packages/**/*.ts\" --fix",
"build": "lerna run build --no-private",
"test": "lerna run test",
"update-dependencies": "ncu -u && lerna exec -- ncu -u",
"prepublish": "npm run eslint && npm run test && npm run build",
"publish": "lerna publish --no-private && git commit -am \"chore: Publish release\" && git push origin",
"publish:prerelease": "npm run prepublish && lerna publish prerelease --no-private --preid pre --pre-dist-tag pre --dist-tag pre --force-publish && git commit -am \"chore: Publish release\" && git push origin"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.8",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"dotenv": "^16.0.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"lerna": "^5.4.3",
"mocha": "^10.0.0",
"npm-check-updates": "^16.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}