-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
43 lines (43 loc) · 1.24 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
{
"name": "packageurl-js",
"version": "2.0.1",
"description": "JavaScript library to parse and build \"purl\" aka. package URLs. This is a microlibrary implementing the purl spec at https://github.com/package-url",
"keywords": [
"package",
"url"
],
"homepage": "https://github.com/package-url/packageurl-js#readme",
"bugs": {
"url": "https://github.com/package-url/packageurl-js/issues"
},
"license": "MIT",
"author": "the purl authors",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/package-url/packageurl-js.git"
},
"scripts": {
"test": "mocha",
"prettify": "prettier --write ./**/*.js",
"update": "run-p --aggregate-output update:**",
"update:data:npm": "node --disable-warning=ExperimentalWarning ./scripts/update-data-npm.js"
},
"devDependencies": {
"all-the-package-names": "2.0.0",
"all-the-package-names-v1.3905.0": "npm:all-the-package-names@1.3905.0",
"mocha": "^10.4.0",
"npm-run-all2": "^7.0.1",
"pacote": "^20.0.0",
"prettier": "^3.2.5",
"validate-npm-package-name": "^6.0.0",
"yocto-spinner": "^0.1.1"
},
"files": [
"*{.js,.ts}",
"data/**/*.json",
"src/**/*{.js,.ts}",
"LICENSE",
"README.md"
]
}