-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.5 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
{
"name": "@offen/analyticstxt-parser",
"version": "4.1.1",
"description": "Parse and validate analytics.txt files",
"bin": {
"analyticstxt": "bin/cmd.js"
},
"main": "index.js",
"browser": "dist/index.cjs.js",
"unpkg": "dist/index.global.min.js",
"scripts": {
"test": "tape \"test/test-*.js\"",
"posttest": "standard",
"preversion": "npm test",
"version": "changes --commits",
"prebuild": "rm -rf dist && mkdir -p dist",
"build:global": "esbuild --minify --target=es2015 --global-name=analyticstxtParser --bundle index.js > dist/index.global.min.js",
"build:cjs": "esbuild --format=cjs --target=es2015 --bundle index.js --external:ajv --external:ajv-formats > dist/index.cjs.js",
"build": "npm run build:global && npm run build:cjs",
"prepublishOnly": "npm run build",
"postversion": "git push --follow-tags && npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offen/analyticstxt-parser.git"
},
"author": "Offen Authors <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/offen/analyticstxt-parser/issues"
},
"homepage": "https://github.com/offen/analyticstxt-parser#readme",
"dependencies": {
"ajv": "^8.1.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.0.2",
"minimist": "^1.2.6",
"wordwrapjs": "^5.1.0"
},
"devDependencies": {
"@studio/changes": "^2.1.0",
"esbuild": "^0.12.9",
"standard": "^16.0.3",
"tape": "^5.2.2"
}
}