-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "wordifyjs",
"version": "1.0.2",
"description": "Turn UUIDs to and from human-friendly words",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"lint": "eslint src/**",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/havenbarnes/wordifyjs.git"
},
"keywords": [
"ID",
"UUID",
"GUID",
"words"
],
"author": "Haven Barnes",
"license": "ISC",
"bugs": {
"url": "https://github.com/havenbarnes/wordifyjs/issues"
},
"homepage": "https://github.com/havenbarnes/wordifyjs#readme",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^25.5.1",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.8",
"jest": "^25.5.4",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^3.9.7"
},
"dependencies": {
"an-array-of-english-words": "^2.0.0",
"uuid": "^7.0.3"
}
}