-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "authorizr",
"version": "0.1.3",
"description": "Minimalist authorisation mechanism for node",
"main": "lib/index.js",
"scripts": {
"test": "ava --verbose test",
"lint": "eslint src/ test/",
"coverage": "nyc ava test",
"prepublish": "npm run test && BABEL_ENV=production babel --out-dir=lib src",
"report": "nyc report --reporter=html",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-es2015-modules-commonjs"
],
"ignore": "__test__",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jtfell/authorizr.git"
},
"author": "Julian Fell",
"license": "MIT",
"bugs": {
"url": "https://github.com/jtfell/authorizr/issues"
},
"homepage": "https://github.com/jtfell/authorizr#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.16.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"coveralls": "^2.11.14",
"eslint": "^3.7.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"nyc": "^8.3.0"
}
}