-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "opaqueid",
"version": "1.2.0",
"description": "A basic opaque ID generator with support for types and metadata.",
"keywords": [
"id",
"base64",
"opaque",
"opaqueid"
],
"main": "lib/opaqueid.js",
"types": "lib/opaqueid.d.ts",
"author": "Kirk Brauer",
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"document": "typedoc --exclude src/**/*.test.ts --out docs src",
"test": "jest --config jestconfig.json",
"test:watch": "jest --config jestconfig.json --watch",
"test:cov": "jest --config jestconfig.json --coverage",
"lint": "eslint ./src/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirkbrauer/opaqueid.git"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typedoc": "^0.15.0",
"typescript": "^3.5.3"
},
"dependencies": {}
}