-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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": "browser-acl",
"description": "Simple ACL library for the browser inspired by Laravel's guards and policies.",
"version": "1.0.2",
"author": "Michael Bøcker-Larsen <[email protected]>",
"license": "MIT",
"keywords": [
"browser",
"acl",
"permissions"
],
"source": "src/index.ts",
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.module.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"types",
"runkit.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mblarsen/browser-acl"
},
"bugs": "https://github.com/mblarsen/browser-acl/issues",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "microbundle build --tsconfig ./tsconfig.json --name BrowserAcl",
"test": "jest --config jest.config.json",
"test:watch": "jest --config jest.config.json --watchAll",
"preversion": "npm run build && npm run test",
"postversion": "git push --tags"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/types": "^7.18.7",
"@types/jest": "^28.1.3",
"babel-jest": "^28.1.2",
"jest": "^28.1.2",
"microbundle": "^0.15.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"runkitExampleFilename": "runkit.js",
"thanks": "https://github.com/mblarsen/browser-acl?sponsor=1"
}