-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "@placemarkio/micro-totp",
"version": "1.1.0",
"description": "a small, simple TOTP library",
"main": "dist/micro-totp.cjs",
"module": "dist/micro-otp.es.mjs",
"typings": "dist/index.d.ts",
"repository": "https://github.com/placemark/micro-totp.git",
"author": "Tom MacWright",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"lint": "eslint . && tsc --noEmit",
"doc": "typedoc --options typedoc.json",
"prepare": "rollup -c rollup.config.mjs && npm run doc",
"release": "standard-version"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/node": "^18.11.12",
"@vitest/coverage-c8": "^0.25.6",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"rollup": "^3.2.4",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"type-fest": "^3.3.0",
"typedoc": "^0.23.19",
"typescript": "^4.7.4",
"vitest": "^0.25.6"
}
}