-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.37 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
{
"name": "randomuuid",
"version": "1.0.1",
"description": "Polyfill for the `crypto.randomUUID()` method as proposed in the 'WICG randomUUID' specification and implemented in Node.js v15.6.0",
"main": "node.js",
"browser": "browser.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest --coverage --notify"
},
"keywords": [
"uuid",
"guid",
"rfc4122"
],
"author": "Jesús Leganés-Combarro 'piranna' <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/eslint-parser": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"browser-resolve": "^2.0.0",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"jest-cli": "^26.6.3",
"prettier": "^2.2.1"
},
"jest": {
"collectCoverageFrom": [
"*.js"
],
"projects": [
{
"displayName": "jsdom",
"resolver": "<rootDir>/jsdom/resolver.js",
"setupFiles": [
"<rootDir>/jsdom/jest.setup.js"
]
},
{
"displayName": "node",
"testEnvironment": "node"
}
]
}
}