-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "@rassweiler/kawasaki-as-parser",
"version": "3.0.0",
"description": "Kawasaki backup parser",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "npx tsc -p .",
"lint": "eslint . --cache --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix --cache --ext .js,.jsx,.ts,.tsx",
"test": "mocha --require @babel/register",
"lbt": "yarn lint && yarn build && yarn test",
"preversion": "yarn lbt",
"version": "git add -A",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rassweiler/kawasaki-as-parser.git"
},
"keywords": [
"Kawasaki",
"robot",
"parser",
"backup"
],
"author": "Kyle Rassweiler",
"license": "MIT",
"bugs": {
"url": "https://github.com/rassweiler/kawasaki-as-parser/issues"
},
"homepage": "https://github.com/rassweiler/kawasaki-as-parser#readme",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/register": "^7.13.16",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
}
}