-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 988 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": "type-safe-json-decoder",
"version": "0.2.0",
"description": "Elm-inspired JSON decoder for typescript",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc && rm -r dist/spec && cp README.md LICENSE package.json dist",
"typings": "typings install",
"test": "tsc && node util/test.js",
"docs": "typedoc --out docs --excludeNotExported --excludePrivate src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ooesili/type-safe-json-decoder.git"
},
"keywords": [
"elm",
"json",
"typescript",
"decode",
"validate"
],
"author": "Wesley Merkel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ooesili/type-safe-json-decoder/issues"
},
"homepage": "https://github.com/ooesili/type-safe-json-decoder#readme",
"devDependencies": {
"jasmine": "^2.5.2",
"typedoc": "^0.5.0",
"typescript": "^2.0.3",
"typings": "^1.4.0"
}
}