forked from fsuipc-node/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.86 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
{
"name": "@fsuipc/api",
"version": "0.4.1",
"author": {
"name": "FSUIPC-Node Opensource Team",
"url": "https://github.com/fsuipc-node"
},
"repository": {
"type" : "git",
"url" : "https://github.com/fsuipc-node/api"
},
"homepage": "https://github.com/fsuipc-node",
"license": "MIT",
"main": "./api.js",
"types": "./lib/index.d.ts",
"scripts": {
"start": "nodemon --exec cross-env TS_NODE_FILES=true TS_NODE_TYPE_CHECK=true TS_NODE_PROJECT=src/tsconfig.app.json node --inspect -r tsconfig-paths/register -r ts-node/register ./src/api.ts",
"compile:dev": "tsc --declaration -p src/tsconfig.app.json",
"compile:prod": "tsc --declaration -p src/tsconfig.prod.json",
"postcompile:dev": "npx tscpaths -v -r -p src/tsconfig.app.json -s ./dist",
"postcompile:prod": "npx tscpaths -v -r -p src/tsconfig.prod.json -s ./dist && yarn copy:docs && yarn copy:package",
"copy:docs": "cp README.md LICENSE dist/",
"copy:package": "node scripts/clean-pkg",
"test": "jest --watch",
"test:ci": "jest --coverage",
"tslint": "tslint -p src/tsconfig.app.json -c tslint.json && tslint -p tests/tsconfig.spec.json -c tslint.json",
"changelog": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog:generate": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"fsuipc": "0.3.0",
"rxjs": "6.5.4",
"vm2": "3.8.4"
},
"peerDependencies": {
"fsuipc": "^0.3.0",
"rxjs": "^6.5.0",
"vm2": "^3.8.0"
},
"devDependencies": {
"@exalif/tscpaths": "0.1.3",
"@types/jest": "25.1.1",
"@types/node": "13.5.3",
"conventional-changelog-cli": "2.0.31",
"cross-env": "7.0.0",
"jest": "25.1.0",
"nodemon": "2.0.2",
"ts-jest": "25.1.0",
"ts-node": "8.6.2",
"tsconfig-paths": "3.9.0",
"tslint": "6.0.0",
"typescript": "3.7.5"
}
}