forked from authorizerdev/authorizer-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 KB
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
{
"version": "0.14.1",
"license": "MIT",
"typings": "lib/cjs/index.d.ts",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"files": [
"lib",
"src"
],
"engines": {
"node": ">=10"
},
"repository": "https://github.com/authorizerdev/authorizer-js",
"scripts": {
"clean": "rm -rf lib",
"start": "rollup -w --config rollup.test.config.js",
"ts-types": "tsc --emitDeclarationOnly --outDir lib",
"build": "npm run clean && rollup --config rollup.config.js --environment INCLUDE_DEPS,BUILD:production",
"test": "npm run build && jest --testTimeout=20000 --runInBand",
"format": "prettier --write 'src/**/*.(ts)'",
"prepublishOnly": "npm run build"
},
"browser": {
"path": "path-browserify"
},
"peerDependencies": {},
"name": "@authorizerdev/authorizer-js",
"author": "Lakhan Samani",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/node-fetch": "^2.5.12",
"husky": "^7.0.1",
"jest": "^27.0.6",
"prettier": "2.3.2",
"rimraf": "^2.7.1",
"rollup": "^2.56.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}