-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.05 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
{
"name": "doctest",
"version": "0.21.0",
"description": "Doctests for JavaScript and CoffeeScript",
"license": "WTFPL",
"contributors": [
"Aldwin Vlasblom <[email protected]>",
"David Chambers <[email protected]>",
"Francesco Occhipinti <[email protected]>"
],
"keywords": [
"doctests",
"test"
],
"type": "module",
"main": "./lib/doctest.js",
"bin": "./bin/doctest",
"repository": {
"type": "git",
"url": "git://github.com/davidchambers/doctest.git"
},
"engines": {
"node": ">=16.2.0"
},
"dependencies": {
"acorn": "8.11.x",
"coffeescript": "2.7.x",
"commander": "2.20.x",
"sanctuary-show": "3.0.x",
"sanctuary-type-classes": "13.0.x"
},
"devDependencies": {
"sanctuary-scripts": "7.0.x"
},
"scripts": {
"doctest": "sanctuary-doctest",
"lint": "sanctuary-lint",
"release": "sanctuary-release",
"test": "npm run lint && sanctuary-test && npm run doctest"
},
"files": [
"/bin/",
"/lib/",
"/LICENSE",
"/README.md",
"/package.json"
]
}