-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.94 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
{
"name": "@exercism/javascript-representer",
"version": "2.0.0",
"description": "Exercism AST representer for javascript",
"repository": "https://github.com/exercism/javascript-representer",
"author": "Derk-Jan Karrenbeld <[email protected]>",
"license": "AGPL-3.0-or-later",
"directories": {
"lib": "./dist",
"doc": "./docs",
"test": "./test"
},
"bin": {
"javascript-representer": "bin/run.sh",
"javascript-representer-remote": "bin/remote.sh"
},
"scripts": {
"represent": "./bin/represent.sh",
"represent:bat": "./bin/represent.bat",
"represent:help": "yarn represent help",
"represent:dev": "yarn build && yarn represent",
"represent:dev:bat": "yarn build && yarn represent:bat",
"prepare": "yarn build",
"build": "yarn tsc --build src",
"prepublishOnly": "yarn test:bare && yarn lint",
"lint": "yarn eslint . --ext ts,js,tsx,jsx,mjs",
"test": "yarn build && yarn test:bare",
"test:bare": "jest"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/node": "^7.20.0",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^29.2.0",
"@types/node": "^16.18.2",
"@types/yargs": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"babel-jest": "^29.2.2",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.2",
"prettier": "^2.7.1"
},
"dependencies": {
"@exercism/static-analysis": "^0.12.0",
"@typescript-eslint/parser": "^5.41.0",
"@typescript-eslint/typescript-estree": "^5.41.0",
"@typescript-eslint/visitor-keys": "^5.41.0",
"astring": "^1.8.3",
"esm": "^3.2.25",
"module-alias": "^2.2.2",
"typescript": "^4.8.4",
"yargs": "^17.6.0"
},
"_moduleAliases": {
"~src": "dist",
"~test": "test"
}
}