-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "@globocom/backstage-functions-sandbox",
"version": "0.5.5",
"description": "Sandbox for Backstage functions",
"main": "index.js",
"scripts": {
"lint": "eslint lib test",
"test": "istanbul cover _mocha --report lcovonly -- --recursive",
"send_cover": "istanbul-coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backstage/functions-sandbox.git"
},
"keywords": [
"sandbox",
"functions",
"backstage"
],
"engines": {
"node": ">=8.9.1"
},
"author": "Backstage Team <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/backstage/functions-sandbox/issues"
},
"homepage": "https://github.com/backstage/functions-sandbox#readme",
"dependencies": {
"once": "^1.4.0",
"stack-trace": "^0.0.9"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"istanbul": "^0.4.5",
"istanbul-coveralls": "^1.0.3",
"mocha": "^3.0.2"
}
}