-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.7 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
{
"name": "reascriptluaparser",
"description": "Parser for Reascript API HTML file from Reaper DAW. Use as module or global CLI",
"version": "2.0.2",
"author": "Claudio Santos",
"homepage": "https://github.com/Claudiohbsantos/reascriptluaparser",
"repository": {
"type": "git",
"url": "https://github.com/Claudiohbsantos/reascriptluaparser.git"
},
"bugs": {
"url": "https://github.com/Claudiohbsantos/reascriptluaparser/issues"
},
"bin": {
"reascriptluaparser": "build/bin/cli.js"
},
"dependencies": {
"commander": "^6.2.1",
"jsdom": "^16.4.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/commander": "^2.12.2",
"@types/jest": "^26.0.19",
"@types/jsdom": "^16.2.5",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"keywords": [
"reaper",
"reascript"
],
"license": "MIT",
"main": "build/lib/parser.js",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf build/",
"cli": "ts-node src/bin/cli.ts",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"release": "npm run test && standard-version"
},
"types": "build/lib/parser.d.ts"
}