-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 940 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
37
38
{
"name": "json-decoder",
"version": "1.4.1",
"description": "Lightweight, lightning-fast, type safe JSON decoder for TypeScript",
"main": "dist/decoder.js",
"typings": "dist/decoder.d.ts",
"scripts": {
"test": "jest --rootDir ./src/__tests__",
"build": "tsc",
"clean": "rm -rf ./dist",
"push": "npm run clean && npm run build && npm run test && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/venil7/json-decoder.git"
},
"files": [
"dist"
],
"keywords": [
"json",
"decoder",
"elm"
],
"author": "Art Deineka, @darkest_ruby",
"license": "ISC",
"bugs": {
"url": "https://github.com/venil7/json-decoder/issues"
},
"homepage": "https://github.com/venil7/json-decoder#readme",
"devDependencies": {
"@types/jest": "^29.5.2",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"typescript": "^5.1.6"
}
}