-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "rbjs",
"version": "0.0.0",
"description": "Augment JavaScript arrays with Ruby array methods, using Proxies",
"main": "index.js",
"scripts": {
"test": "ava",
"lint": "eslint --ignore-pattern docs --ignore-pattern es5 '**/*.js'",
"docs": "esdoc",
"build": "node scripts/build-es5.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"arrays",
"proxies",
"ruby-arrrays"
],
"author": "Arnelle Balane <arnellebalane@gmail.com> (https://arnellebalane.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arnellebalane/rbjs.git"
},
"bugs": {
"url": "https://github.com/arnellebalane/rbjs/issues"
},
"homepage": "https://github.com/arnellebalane/rbjs#readme",
"devDependencies": {
"@babel/core": "7.5.5",
"@babel/preset-env": "7.5.5",
"ava": "2.2.0",
"babel-plugin-add-module-exports": "1.0.2",
"esdoc": "1.1.0",
"esdoc-inject-style-plugin": "1.0.0",
"esdoc-standard-plugin": "1.0.0",
"eslint": "6.1.0",
"eslint-config-arnellebalane": "5.0.0",
"esm": "3.2.25",
"husky": "3.0.3",
"lint-staged": "9.2.1",
"mkdirp": "0.5.1",
"rimraf": "2.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.js": "eslint"
}
}