-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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": "rability",
"version": "1.0.2",
"description": "Simple authorization library inspired by cancancan",
"module": "es/index.js",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/estepan/rability"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "npm run build && mocha",
"build:cjs": "BABEL_ENV=cjs babel source --out-dir src",
"build:es": "BABEL_ENV=es babel source --out-dir es",
"build:umd": "NODE_ENV=development rollup -c -o dist/rability.js",
"build:umd:min": "NODE_ENV=production rollup -c -o dist/rability.min.js",
"build": "npm run build:cjs && npm run build:umd && npm run build:umd:min && npm run build:es"
},
"keywords": [
"authorization",
"ability",
"can",
"react",
"auth"
],
"author": "Evgeny Stepanov",
"license": "MIT",
"dependencies": {
"ramda": "^0.25.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"mocha": "^5.2.0",
"rollup": "^0.62.0",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-uglify": "^4.0.0"
}
}