-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 704 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 704 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
{
"name": "@exercism/coffeescript",
"description": "Exercism exercises in CoffeeScript",
"author": "Katrina Owen",
"contributors": [
"Andras B Nagy"
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/coffeescript.git"
},
"devDependencies": {
"coffeelint": "^2.1.0",
"coffeescript": "^2.7.0",
"jasmine-node": "^3.0.0",
"prettier": "^2.8.8",
"prettier-plugin-coffeescript": "^0.1.5"
},
"scripts": {
"test": "jasmine-node --coffee .",
"lint": "coffeelint -r .",
"watch": "jasmine-node --coffee --autotest .",
"format": "prettier --write ."
},
"packageManager": "npm@11.13.0"
}