-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "gemfile-parser",
"version": "0.1.0",
"description": "Delightful Node.js Ruby Gemfile and gemspec parser. Converts Gemfiles and gemspecs into easily consumable JSON.",
"main": "lib/index.js",
"author": "dev-cprice",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dev-cprice/gemfile-parser.git"
},
"homepage": "https://github.com/dev-cprice/gemfile-parser",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"keywords": [
"Ruby",
"Gemfile",
"gemspec",
"parser",
"Node",
"JSON"
],
"scripts": {
"compile": "babel src --out-dir lib --copy-files",
"precompile": "rm -rf lib",
"lint": "eslint .",
"prepublish": "yarn run lint && yarn run compile"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"fs-extra": "^7.0.1"
}
}