-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.23 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@themost/client",
"version": "2.16.3",
"description": "MOST Web Framework Codename Blueshift - Client Common",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"client-cli": "util/bin/cli.js"
},
"scripts": {
"build": "rimraf dist && rimraf common/dist && rollup -c ./rollup.config.js -m",
"watch": "rimraf dist && rimraf common/dist && rollup -c ./rollup.config.js -m -w",
"prepublishOnly": "npm run build",
"test": "karma start",
"test:node": "jasmine",
"tslint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/client.git"
},
"author": "THEMOST LP <themost-framework@themost.io>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/client/issues"
},
"homepage": "https://github.com/themost-framework/client#readme",
"dependencies": {
"@themost/events": "^1.1.0",
"@themost/json": "^1.0.1",
"@themost/query": "^2.13.1",
"@themost/xml": "^2.5.1",
"buffer": "^6.0.3",
"minimist": "^1.2.8",
"superagent": "^9.0.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@themost/test": "^2.9.0",
"@types/jasmine": "^3.10.0",
"@types/minimist": "^1.2.5",
"@types/node": "^16.11.4",
"@types/superagent": "^8.1.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"ansi-regex": "^5.0.1",
"core-js": "^2.6.12",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"karma-typescript": "^5.5.3",
"karma-typescript-es6-transform": "^5.5.4",
"rollup": "^2.70.1",
"rollup-plugin-commonjs": "^10.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.4.4"
}
}