forked from stalniy/casl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.59 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@casl/aurelia",
"version": "1.1.1",
"description": "Aurelia plugin for CASL which makes it easy to add permissions in any Aurelia apps",
"main": "dist/umd/index.js",
"module": "dist/es5m/index.js",
"es2015": "dist/es6m/index.mjs",
"typings": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/es6m/index.mjs",
"require": "./dist/umd/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/stalniy/casl.git"
},
"homepage": "https://casl.js.org",
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist/* && npm run build.types",
"build": "BUILD_TYPES=es5m,es6m,umd rollup -c ../../rollup.config.js -n casl.au -g aurelia-framework:au,@casl/ability:casl",
"build.types": "tsc -p tsconfig.build.json",
"lint": "eslint --ext .js,.ts src/",
"test": "NODE_ENV=test jest --config ../../tools/jest.config.js",
"prerelease": "npm run lint && npm test && NODE_ENV=production npm run build",
"release": "semantic-release -e ../../tools/semantic-release"
},
"keywords": [
"casl",
"aurelia",
"access control",
"authorization",
"acl",
"cancan",
"security",
"permissions"
],
"author": "Sergii Stotskyi <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@casl/ability": "^3.0.0 || ^4.0.0 || ^5.1.0",
"aurelia-framework": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.0",
"@babel/plugin-transform-typescript": "^7.10.0",
"@babel/preset-env": "^7.8.4",
"@casl/ability": "^5.1.0",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-node-resolve": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@typescript-eslint/eslint-plugin": "4.22.0",
"aurelia-bootstrapper": "^2.3.0",
"aurelia-framework": "^1.3.1",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-browser": "^1.8.0",
"aurelia-polyfills": "^1.3.0",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"chai": "^4.1.0",
"chai-spies": "^1.0.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.0.0",
"rollup": "^2.10.9",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^7.0.0",
"semantic-release": "17.3.2",
"ts-jest": "^26.4.4",
"typescript": "~4.0.0"
},
"files": [
"dist",
"*.d.ts"
]
}