-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 910 Bytes
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": "goof3",
"version": "1.0.0",
"description": "The goof3 language",
"main": "index.js",
"scripts": {
"test": "jest --collect-coverage && eslint {,**/}*.js",
"lint": "eslint {,**/}*.js",
"format": "prettier-eslint --write {,**/}*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinusername/Goof3.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinusername/Goof3/issues"
},
"homepage": "https://github.com/kevinusername/Goof3#readme",
"dependencies": {
"ohm-js": "^0.14.0",
"prettier": "^1.19.1",
"yargs": "^15.0.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"jest": "^24.9.0",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0"
}
}