forked from plumier/plumier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.19 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.19 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
{
"private": true,
"description": "Delightful Node.js Rest Framework",
"scripts": {
"postinstall": "cd website && yarn install",
"test": "jest --maxWorkers=4",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --format stylish",
"clean": "node script/cleanup",
"compile:only": "lerna run compile",
"compile": "npm run clean && jest && lerna run compile",
"build:pre": "npm run compile && lerna publish prerelease --exact --preid beta --force-publish",
"build:canary": "npm run compile && lerna publish prerelease --exact --canary --preid canary --force-publish",
"build:prod": "npm run compile && lerna publish && npm run clean",
"benchmark": "yarn workspace plumier benchmark",
"doc:start": "cd website && yarn start",
"doc:build": "cd website && yarn build"
},
"author": "Ketut Sandiarsa",
"devDependencies": {
"@types/jest": "^24.0.15",
"babel-core": "^6.26.3",
"coveralls": "^3.0.4",
"del": "^5.0.0",
"edit-json-file": "^1.2.1",
"jest": "^24.8.0",
"lerna": "3.15.0",
"pre-push": "^0.1.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"workspaces": [
"packages/*"
],
"pre-push": [
"test"
]
}