-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 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
41
42
43
44
45
46
47
48
49
{
"name": "@themost/node",
"version": "2.5.2",
"description": "MOST Web Framework NodeJS Client Module",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jasmine",
"build": "rimraf dist && rollup -c ./rollup.config.js -m",
"watch": "rimraf dist && rollup -c ./rollup.config.js -m -w",
"prepublishOnly": "npm run build",
"tslint": "tslint --project ."
},
"peerDependencies": {
"@themost/client": "^2.5.6",
"@themost/xml": "^2.5.1"
},
"engines": {
"node": ">=12.22.12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/node.git"
},
"author": "THEMOST LP <support@themost.io>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/node/issues"
},
"homepage": "https://github.com/themost-framework/node#readme",
"dependencies": {
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@themost/test": "^2.3.4",
"@types/jasmine": "^3.5.0",
"@types/node": "^12.12.14",
"@types/node-fetch": "^2.5.4",
"jasmine": "^3.10.0",
"jasmine-spec-reporter": "^7.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
}
}