forked from joanllenas/ts.data.json
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "ts-data-json",
"version": "0.2.1-fix",
"description": "A JSON decoding library for Typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'src/**/*.spec.ts'",
"release": "npm run build && npm run test && standard-version",
"pub": "git push --follow-tags origin master && tsc && npm publish"
},
"keywords": [
"json",
"decoding",
"json-decoder",
"elm"
],
"author": "daniel van den eijkel",
"contributors": [
{
"name": "Joan Llenas Masó",
"email": "joan.llenas.maso@gmail.com",
"url": "http://joanllenas.com"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/joanllenas/ts.data.json"
},
"bugs": {
"url": "https://github.com/joanllenas/ts.data.json/issues"
},
"homepage": "https://github.com/joanllenas/ts.data.json#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"prettier": "^1.15.3",
"standard-version": "^4.4.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
}
}