-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.32 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": "baapan",
"version": "3.7.0",
"description": "Super Cool NPM Playground right on the Node REPL",
"bin": "build/entrypoint.js",
"test": "",
"scripts": {
"lint": "eslint .",
"build": "./node_modules/@babel/cli/bin/babel.js src/ -d build/",
"test": "mocha --require @babel/register test"
},
"author": "Deepal Jayasekara <[email protected]>",
"license": "ISC",
"engines": {
"node": "<=12.15.0"
},
"dependencies": {
"boxen": "4.2.0",
"colors": "1.4.0",
"mkdirp": "0.5.5",
"rimraf": "3.0.0",
"semver": "7.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepal/baapan.git"
},
"keywords": [
"npm",
"runkit"
],
"bugs": {
"url": "https://github.com/deepal/baapan/issues"
},
"homepage": "https://github.com/deepal/baapan#readme",
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.6.0",
"@babel/preset-env": "7.6.0",
"@babel/register": "7.6.0",
"chai": "4.2.0",
"eslint": "6.4.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"mocha": "7.2.0",
"nyc": "15.0.0",
"proxyquire": "2.1.3",
"sinon": "8.1.0"
},
"directories": {
"doc": "docs",
"lib": "lib"
}
}