-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "afid",
"version": "1.3.0",
"description": "Random identifiers with some affordances for human usage.",
"author": "Alec Perkins <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alecperkins/afid/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alecperkins/afid.git"
},
"homepage": "https://alecperkins.net/afid",
"keywords": [
"id",
"identifier",
"human-friendly",
"verbal",
"reading",
"key"
],
"main": "index.js",
"unpkg": "afid.min.js",
"private": true,
"scripts": {
"build-lib": "rm -rf ./build && tsc",
"build-dist": "npm run build-lib && node ./scripts/build-dist.js",
"prepack": "npm run build-dist && npm run test",
"inspect-package": "npm run prepack && npm pack --dry-run ./dist/afid",
"publish-to-npm": "npm run inspect-package && node ./scripts/confirm-publish.js && npm publish ./dist/afid && npm run postpublish",
"postpublish": "cd ./tests/integration/ && npm run test-published",
"test": "node ./scripts/test.js"
},
"devDependencies": {
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
}
}