-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.6 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
72
73
74
75
76
77
78
{
"name": "json-literal-typer",
"version": "0.1.1",
"description": "generates literal typescript iterfaces from JSON",
"sideEffects": false,
"bin": "dist/cjs/cli.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean:test": "rimraf __tests__/out/*",
"clean:coverage": "rimraf coverage/*",
"clean:build": "rimraf dist/*",
"clean:build:cjs": "rimraf dist/cjs/*",
"clean:build:esm": "rimraf dist/esm/*",
"format": "prettier --write \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"format:check": "prettier --check \"{src,__tests__}/**/*.{js,ts,jsx,tsx,json,html,css,scss,yml,yaml}\"",
"lint": "eslint \"{src,__tests__}/**/*.{js,ts,jsx,tsx}\"",
"pretest": "npm run clean:test",
"test": "jest",
"pretest:coverage": "npm run clean:coverage",
"test:coverage": "npm run test -- --coverage",
"pretest:debug": "npm run clean:test",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:after-commit": "run-p format:check lint test:coverage build:check",
"test:before-publish": "run-p format:check lint test build",
"prebuild:cjs": "npm run clean:build:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"prebuild:esm": "npm run clean:build:esm",
"build:esm": "tsc -p tsconfig.esm.json",
"build:check": "tsc",
"build": "run-p build:cjs build:esm",
"postbuild": "chmod +x dist/cjs/cli.js"
},
"keywords": [
"json",
"typescript",
"literal"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pabra/json-literal-typer.git"
},
"contributors": [
"Michael Scott-Nelson <[email protected]> (https://github.com/mscottnelson)"
],
"bugs": {
"url": "https://github.com/pabra/json-literal-typer/issues"
},
"homepage": "https://github.com/pabra/json-literal-typer#readme",
"author": "Patrick Braune <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"peerDependencies": {},
"dependencies": {
"arg": "^5.0.0"
}
}