-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "sequential-id-generator",
"version": "2.1.2",
"description": "String / code / id sequential generator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepare" : "npm run build",
"prepublishOnly" : "npm test",
"test": "jest"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/russoedu/sequential-id-generator.git"
},
"author": "Eduardo Russo (https://about.me/russoedu)",
"homepage": "https://github.com/russoedu/sequential-id-generator#readme",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/russoedu/sequential-id-generator/issues"
},
"directories": {
"lib": "lib"
},
"keywords": [
"code",
"id",
"generator",
"sequential"
]
}