-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 894 Bytes
/
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
{
"name": "data-exchange",
"version": "2.4.0",
"description": "Data loading and dumping library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "npm run build && jasmine-ts --config=jasmine.json",
"build": "tsc -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmordo/data-exchange.git"
},
"keywords": [
"data",
"marshalling",
"dumping",
"loading"
],
"author": "Petr Jindra <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elmordo/data-exchange/issues"
},
"homepage": "https://github.com/elmordo/data-exchange#readme",
"devDependencies": {
"@types/jasmine": "^3.8.2",
"jasmine": "^3.8.0",
"jasmine-ts": "^0.4.0",
"jasmine-spec-reporter": "^7.0.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}