-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "asl-path-validator",
"version": "0.16.0",
"description": "Validates the path expressions for the Amazon States Language",
"main": "./dist/index.js",
"scripts": {
"build": "npm run generate && npx tsc && npm run test",
"lint": "npx eslint . --max-warnings 0 --ext ts",
"test": "npx jest",
"generate": "mkdirp src/generated && ./node_modules/.bin/peggy -o src/generated/aslPaths.js src/aslPaths.pegjs",
"clean": "rimraf dist src/generated"
},
"repository": {
"type": "git",
"url": "https://github.com/massfords/asl-path-validator.git"
},
"keywords": [
"asl",
"amazon states language",
"aws",
"step functions",
"state machine"
],
"author": "Mark Ford",
"license": "MIT",
"bugs": {
"url": "https://github.com/massfords/asl-path-validator/issues"
},
"homepage": "https://github.com/massfords/asl-path-validator#readme",
"devDependencies": {
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"ajv": "^8.11.0",
"eslint": "^8.18.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-prettier": "^4.1.0",
"jest": "^28.1.1",
"jest-junit": "^14.0.0",
"mkdirp": "^1.0.4",
"peggy": "4.0.3",
"prettier": "^2.7.1",
"rimraf": "^6.0.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
},
"dependencies": {
"jsonpath-plus": "^10.1.0"
}
}