-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "solid-acl-utils",
"version": "0.1.1",
"description": "",
"main": "./dist/node/solid-acl-utils.bundle.js",
"scripts": {
"test": "jest",
"build": "webpack",
"build:tsc": "npx tsc --outDir types --emitDeclarationOnly --declaration",
"prepublishOnly": "npm run test && npm run build && npm run build:tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/otto-aa/solid-acl-utils.git"
},
"keywords": [
"solid",
"acl"
],
"author": "otto-aa",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.10.4",
"@types/jest": "^26.0.3",
"@types/parse-link-header": "^1.0.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"jest": "^26.1.0",
"regenerator-runtime": "^0.13.5",
"standard": "^14.3.4",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"bugs": {
"url": "https://github.com/otto-aa/solid-acl-utils/issues"
},
"homepage": "https://github.com/otto-aa/solid-acl-utils#readme",
"dependencies": {
"@babel/runtime-corejs3": "^7.10.4",
"core-js": "^3.6.5",
"parse-link-header": "^1.0.1",
"solid-acl-parser": "^0.2.1"
},
"standard": {
"globals": [
"jest",
"describe",
"test",
"expect",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach"
]
}
}