-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.16 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.16 KB
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
69
70
71
{
"name": "react-native-uuid",
"version": "2.0.4",
"description": "react-native-uuid is a zero-dependency TypeScript implementation of RFC4122.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"prepare": "husky install",
"test": "jest",
"bench:rn": "node scripts/benchmark-rn-versions.js",
"bench:security": "node scripts/security-benchmark.js",
"bench:figures": "node scripts/generate-benchmark-figures.js",
"bench:all": "npm run bench:rn && npm run bench:security && npm run bench:figures",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"docs": "typedoc ./src --entryDocument .",
"prettier:write": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\" --no-error-on-unmatched-pattern",
"prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\" --no-error-on-unmatched-pattern",
"lint": "tsc --noEmit && eslint --ext .js,.jsx,.ts,.tsx ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugenehp/react-native-uuid.git"
},
"keywords": [
"uuid",
"rfc4122",
"react-native",
"reactivelions"
],
"author": "Eugene Hauptmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/eugenehp/react-native-uuid/issues"
},
"homepage": "https://github.com/eugenehp/react-native-uuid#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/runtime": "^7.24.0",
"@react-native-community/eslint-config": "^3.2.0",
"@types/jest": "^29.5.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "^3.2.0",
"react-test-renderer": "^17.0.2",
"ts-jest": "^29.4.6",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}