-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
66 lines (66 loc) · 2.1 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
61
62
63
64
65
66
{
"name": "@exercism/javascript-analyzer",
"version": "0.22.0",
"description": "Exercism analyzer for javascript",
"repository": "https://github.com/exercism/javascript-analyzer",
"author": "Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>",
"license": "AGPL-3.0-or-later",
"main": "dist/analyze.js",
"browser": "dist/web.js",
"directories": {
"lib": "./dist",
"doc": "./docs",
"test": "./test"
},
"bin": {
"javascript-analyzer": "./bin/run.sh",
"javascript-analyzer-remote": "./bin/run.sh"
},
"scripts": {
"analyze": "./bin/analyze.sh",
"analyze:bat": "./bin/analyze.bat",
"analyze:help": "yarn analyze help",
"analyze:dev": "yarn build && yarn analyze",
"analyze:dev:bat": "yarn build && yarn analyze:bat",
"prepare": "yarn build",
"prebuild": "rimraf dist",
"build": "yarn babel src --out-dir dist --extensions .ts",
"prepublishOnly": "yarn test:bare && yarn lint",
"lint": "yarn eslint . --ext ts,js,tsx,jsx,mjs",
"test": "yarn build && yarn test:bare",
"test:e2e": "yarn build && node scripts/e2e",
"test:bare": "jest"
},
"devDependencies": {
"@babel/cli": "~7.18.10",
"@babel/core": "~7.18.10",
"@babel/node": "~7.18.10",
"@babel/preset-env": "~7.18.10",
"@babel/preset-typescript": "~7.18.6",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.47",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"babel-jest": "^27.5.1",
"babel-plugin-module-resolver": "^4.1.0",
"core-js": "^3.24.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5"
},
"dependencies": {
"@exercism/static-analysis": "^0.12.0",
"@typescript-eslint/parser": "^5.32.0",
"@typescript-eslint/typescript-estree": "^5.32.0",
"@typescript-eslint/visitor-keys": "^5.32.0",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"resolutions": {}
}