forked from aische/JsonDecoder
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "ts.data.json",
"version": "2.2.0",
"description": "A JSON decoding library for Typescript",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "mocha --require ts-node/register 'src/**/*.spec.ts'",
"lint": "tslint --project ./tsconfig.json",
"prepub": "npm run test && npm run lint",
"pub": "npm run build && npm publish",
"prebeta": "npm run test && npm run lint",
"beta": "npm run build && npm publish --tag beta"
},
"keywords": [
"json",
"decoder",
"encoder",
"codec",
"parse",
"elm"
],
"author": "daniel van den eijkel",
"contributors": [
{
"name": "Joan Llenas Masó",
"email": "[email protected]",
"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.2.18",
"@types/mocha": "^5.2.7",
"chai": "^4.3.4",
"mocha": "^6.2.3",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.0"
}
}