-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 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": "codesandbox-example-links",
"version": "1.1.0",
"description": "Insert runnable code example links/iframes to READMEs",
"bin": "index.js",
"main": "index.js",
"author": "[email protected]",
"license": "MIT",
"private": false,
"keywords": [
"codesandbox",
"runnable",
"example",
"documentation",
"readme"
],
"scripts": {
"test": "mocha spec"
},
"repository": {
"type": "git",
"url": "https://github.com/featurist/codesandbox-example-links.git"
},
"bugs": {
"url": "https://github.com/featurist/codesandbox-example-links/issues"
},
"homepage": "https://github.com/featurist/codesandbox-example-links",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^6.2.2"
},
"dependencies": {
"codesandbox": "^2.1.11",
"debug": "^4.1.1",
"glob": "^7.1.6",
"yargs": "^15.0.2"
}
}