-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1011 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
{
"name": "json-parser",
"version": "1.0.0",
"description": "TypeScript JSON parser",
"main": "dist/index.js",
"scripts": {
"t-foo": "npm run test -- ./tests/foo-parser.test.ts",
"t-fromStr": "npm run test -- ./tests/from-str.test.ts",
"t-map": "npm run test -- ./tests/map.test.ts",
"t-null": "npm run test -- ./tests/null-parser.test.ts",
"t-alt": "npm run test -- ./tests/alt.test.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dggluz/talk-ts-json-parser.git"
},
"keywords": [
"json",
"parser",
"typescript",
"functional"
],
"author": "Gonzalo Gluzman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dggluz/talk-ts-json-parser/issues"
},
"homepage": "https://github.com/dggluz/talk-ts-json-parser#readme",
"devDependencies": {
"@types/jest": "28.1.8",
"jest": "28.1.3",
"ts-jest": "28.0.8",
"tslint": "6.1.3",
"typescript": "4.8.2"
}
}