-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
{
"name": "@basketry/ast",
"version": "0.0.2",
"description": "AST support for basketry parsers",
"main": "./lib/index.js",
"scripts": {
"prebuild": "run-s -s clean lint",
"build": "tsc",
"clean": "run-s -s clean:*",
"clean:output": "rimraf lib",
"clean:coverage": "rimraf coverage",
"fix": "run-s -s fix:*",
"fix:eslint": "eslint --fix src/**/*.*",
"fix:prettier": "prettier -w .",
"lint": "run-s -s lint:*",
"lint:eslint": "eslint src/**/*.*",
"lint:prettier": "prettier -c .",
"start": "node ./lib/index.js",
"pretest": "run-s -s clean",
"test": "jest",
"prepack": "run-s -s build"
},
"keywords": [],
"author": "",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/basketry/ast.git"
},
"bugs": {
"url": "https://github.com/basketry/ast/issues"
},
"homepage": "https://github.com/basketry/ast#readme",
"funding": "https://github.com/basketry/ast?sponsor=1",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^29.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"basketry": "^0.0.34",
"json-to-ast": "^2.1.0",
"yaml-ast-parser": "^0.0.43"
}
}