-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 1004 Bytes
/
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
{
"name": "@exercism/wren-representer",
"version": "0.1.0",
"description": "Exercism Wren Representer",
"main": "index.js",
"scripts": {
"test": "./tools/run-tests.sh",
"rebuild": "./tools/run-tests.sh --rebuild",
"lint": "yarn eslint . --ext js"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/exercism/wren-representer.git"
},
"author": "Josh Goebel <hello@joshgoebel.com>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/exercism/wren-representer/issues"
},
"homepage": "https://github.com/exercism/wren-representer#readme",
"dependencies": {
"@exercism/codemirror-lang-wren": "^0.7.0",
"@exercism/eslint-config-javascript": "^0.3.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"prettier": "^2.3.1"
},
"devDependencies": {
"jest": "^27.0.1"
}
}