forked from JohnWeisz/TypedJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.24 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
{
"name": "typedjson",
"version": "1.5.1",
"description": "Typed JSON parsing and serializing for TypeScript that preserves type information, using decorators. Parse JSON into actual class instances.",
"main": "./js/typedjson.js",
"typings": "./js/typedjson.d.ts",
"scripts": {
"test": "npm run build && nyc ts-node -O '{\"module\": \"commonjs\", \"strict\": false}' node_modules/jasmine/bin/jasmine.js",
"build": "webpack",
"preversion": "npm test",
"version": "npm run build && git add -A js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnWhiteTB/TypedJSON.git"
},
"author": "John White",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohnWhiteTB/TypedJSON/issues"
},
"homepage": "https://github.com/JohnWhiteTB/TypedJSON",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "^3.5.3",
"jasmine": "^3.5.0",
"nyc": "^15.0.0",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.16",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.5",
"webpack-auto-inject-version": "^1.2.2",
"webpack-cli": "^3.3.10"
}
}