-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "jscombguid",
"version": "1.1.0",
"description": "JavaScript module used to create comb guids.",
"main": "lib/index.js",
"types": "lib/index",
"type": "module",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint src/**",
"test": "nyc mocha --require @babel/register",
"compile": "babel ./src -d ./lib",
"copy-types": "node scripts/copy-types.js",
"verify": "npm run lint && npm run test",
"build": "npm run clean && npm run lint && npm run compile && npm run copy-types && npm run test",
"prepublishOnly": "npm run build",
"upgrade-interactive": "npm-check-updates --interactive",
"trypublish": "npm publish || true",
"changeset": "changeset",
"version-packages": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanande/JsCombGuid.git"
},
"keywords": [
"guid",
"combguid",
"guid generator"
],
"author": "Ryan Anderson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanande/JsCombGuid/issues"
},
"homepage": "http://ryanande.github.io/JsCombGuid/",
"devDependencies": {
"@types/node": "^25.0.3",
"@changesets/cli": "^2.29.8",
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/register": "^7.28.3",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"mocha": "^11.7.5",
"npm-check-updates": "^19.2.0",
"nyc": "^17.1.0",
"rimraf": "^6.1.2"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}