-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.33 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
57
{
"name": "bin-to-file",
"version": "1.0.8",
"description": "Converts JS Bin object to static HTML",
"main": "dist/index.js",
"babel": {
"presets": [
"env",
"stage-0"
],
"plugins": []
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"test": "jest **/*.test.js",
"prepublishOnly": "babel --ignore=node_modules lib/index.js -o dist/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jsbin/bin-to-file.git"
},
"keywords": [
"jsbin"
],
"author": "Remy Sharp",
"bugs": {
"url": "https://github.com/jsbin/bin-to-file/issues"
},
"homepage": "https://github.com/jsbin/bin-to-file",
"devDependencies": {
"@remy/eslint": "^1.3.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"cheerio": "^0.19.0",
"eslint": "^4.16.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.41.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-react": "^7.5.1",
"file-to-bin": "^1.0.0",
"jest": "^22.1.4",
"w3cjs": "~0.1.25"
},
"dependencies": {},
"license": "MIT"
}