-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "rainbows-lang",
"version": "0.0.1",
"description": "The Rainbows programming language",
"main": "index.js",
"bin": {
"rain-infer.js": "bin/rain-infer.js",
"rain-interp.js": "bin/rain-interp.js"
},
"scripts": {
"start": "http-server -o",
"test": "nyc --reporter=text --reporter=lcov mocha",
"lint": "eslint .",
"posttest": "npm run lint",
"deploy": "deploy-gh"
},
"nyc": {
"exclude": [
"lib/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfischer/rainbows-lang.git"
},
"keywords": [
"rainbows",
"language",
"lang"
],
"author": "Nate Fischer",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfischer/rainbows-lang/issues"
},
"homepage": "https://github.com/nfischer/rainbows-lang#readme",
"dependencies": {
"colors": "^1.4.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"deploy-gh": "^0.2.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"http-server": "^13.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0"
},
"directories": {
"doc": "doc"
},
"engines": {
"node": ">=10"
}
}