-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
33 lines (33 loc) · 1019 Bytes
/
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
{
"name": "keratin-authn",
"version": "1.5.0",
"description": "Browser integration library for Keratin AuthN service.",
"main": "./dist/keratin-authn.js",
"module": "./dist/keratin-authn.module.js",
"types": "./dist/index.d.ts",
"author": "Lance Ivy",
"license": "LGPL-3.0",
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.2.5",
"msw": "^0.35.0",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-uglify": "^6.0.4",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"scripts": {
"build": "yarn clean && yarn compile && rollup -c && cp lib/*.d.ts dist",
"clean": "rm -rf dist",
"compile": "yarn tsc",
"format": "prettier -w src/*.ts",
"lint:format": "prettier -c src/*.ts",
"problems": "yarn typecheck && yarn lint:format",
"release": "yarn problems && yarn test && yarn build && yarn publish",
"test": "yarn jest",
"typecheck": "tsc --noEmit"
}
}