-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.32 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
{
"name": "@cafienne/typescript-client",
"version": "0.8.2",
"description": "A javascript based test framework for CMMN case models",
"main": "index.js",
"scripts": {
"test": "node ./dist/app.js",
"build": "tsc",
"clean": "rm -rf ./dist",
"deploy-source": "ts-node-dev --transpile-only ./src/deploy-source.ts",
"try": "ts-node-dev --transpile-only ./src/app.ts",
"dev": "npm run try",
"prepare-publish": "npm run clean & npm run build & shx cp package.json ./dist & shx cp README.md ./dist",
"publishLocal": "npm run prepare-publish & cd ./dist & npm pack",
"publishRemote": "npm run prepare-publish & cd ./dist & npm publish --access public",
"prod": "npm run build & node ./dist/app.js"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"@cafienne/repository": "^0.1.7",
"express": "^4.17.1",
"isomorphic-fetch": "^3.0.0",
"poll-until-promise": "^4.1.0",
"readline-sync": "^1.4.10",
"server-destroy": "1.0.1",
"ts-node-dev": "^1.1.8",
"typescript": "^3.7.4",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^13.5.0",
"@types/readline-sync": "^1.4.4",
"@types/server-destroy": "1.0.1",
"@types/xmldom": "^0.1.31",
"shx": "^0.3.4"
}
}