-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 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
{
"name": "lambda-cli",
"version": "0.1.0",
"description": "a command line interface to Wikifunctions",
"repository": {
"type": "git",
"url": "git://ithub.com/vrandezo/lambda-cli.git"
},
"keywords": [
"CLI",
"Wikifunctions",
"functions",
"commands",
"WikiLambda"
],
"author": {
"name": "Denny Vrandečić",
"email": "[email protected]",
"url": "http://simia.net/wiki/Denny"
},
"contributors": [
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/vrandezo/lambda-cli/issues"
},
"homepage": "https://github.com/vrandezo/lambda-cli",
"main": "src/lambda.js",
"scripts": {
"start": "src/lambda.js",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"fix": "eslint --fix --max-warnings 0 --ext .js --ext .json .",
"unit": "qunit",
"test": "npm run lint && npm run unit"
},
"dependencies": {
"function-schemata": "file:function-schemata"
},
"devDependencies": {
"eslint-config-wikimedia": "^0.21.0",
"eslint-plugin-unicorn": "^40.0.0",
"qunit": "^2.17.2"
},
"engines": {
"node": ">=17.0.0"
}
}