-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 KB
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
{
"name": "ugraph",
"version": "0.0.0",
"description": "Parser for uGraph JSON data.",
"private": false,
"repository": "github:transformd-oss/ugraph",
"author": "Transformd Pty Ltd (https://transformd.com/)",
"contributors": [
"Peter Boyer <https://github.com/peterboyer>"
],
"license": "MIT",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"prepare": "husky install",
"dev": "yarn test && yarn test:ts && yarn lint",
"test": "./scripts/test.sh",
"test:ts": "./scripts/test-ts.sh",
"lint": "./scripts/lint.sh",
"build": "./scripts/build.sh",
"build:version": "./scripts/build-version.sh",
"docs": "./scripts/docs.sh"
},
"dependencies": {
"esresult": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@tsconfig/node16": "^1.0.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"concurrently": "^7.0.0",
"dot-json": "^1.2.0",
"esbuild": "^0.14.38",
"esbuild-jest": "^0.5.0",
"esbuild-node-tsc": "^1.8.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.4.0",
"nodemon": "^2.0.0",
"prettier": "^2.3.0",
"tsd": "^0.20.0",
"typedoc": "^0.22.0",
"typescript": "^4.5.0"
},
"keywords": [
"json",
"graph",
"schema"
]
}