-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
71 lines (71 loc) · 2.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "typedjson",
"version": "1.8.0",
"description": "Typed JSON parsing and serializing for TypeScript that preserves type information, using decorators. Parse JSON into actual class instances.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm5/index.js",
"es2015": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"sideEffects": false,
"size-limit": [
{
"path": "./lib/esm/index.js",
"limit": "8 KB"
}
],
"scripts": {
"build": "run-s build:*",
"build:clean": "rimraf ./lib",
"build:ts": "tsc --build ./tsconfig/tsconfig.bundle.*.json",
"coverage": "nyc yarn run test",
"lint": "eslint \"spec/**/*.ts\" \"src/**/*.ts\"",
"preversion": "yarn run coverage",
"size": "size-limit",
"test": "yarn run test:base node_modules/jasmine/bin/jasmine.js",
"test:base": "TS_NODE_PROJECT=tsconfig/tsconfig.spec.json node -r ts-node/register",
"test:inspect": "yarn run test:base --inspect-brk node_modules/jasmine/bin/jasmine.js",
"test:ts": "run-p test:ts:*",
"test:ts:src": "tsc -p tsconfig/tsconfig.app-strict.json",
"test:ts:spec": "tsc -p tsconfig/tsconfig.spec-strict.json",
"version": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JohnWhiteTB/TypedJSON.git"
},
"author": "John White",
"license": "MIT",
"bugs": {
"url": "https://github.com/JohnWhiteTB/TypedJSON/issues"
},
"homepage": "https://github.com/JohnWhiteTB/TypedJSON",
"dependencies": {
"tslib": "^2.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@matthiaskunnen/eslint-config-typescript": "^1.2.0",
"@size-limit/preset-small-lib": "^4.5.7",
"@types/jasmine": "^3.5.3",
"eslint-plugin-jasmine": "^4.1.1",
"husky": "^4.2.5",
"jasmine": "^3.5.0",
"lint-staged": "^10.2.13",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"size-limit": "^4.5.7",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"lib/**/!(*.tsbuildinfo)",
"src"
]
}