forked from SimonAlling/userscript-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.61 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.61 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
{
"name": "@monoid-dev/userscript-metadata",
"version": "2.0.0",
"description": "Parse, validate and stringify metadata in TypeScript.",
"main": "dist/index",
"scripts": {
"build": "npm run clean && tsc && npm run rename && npm run commonjs",
"prepare": "npm run build",
"clean": "rm -rf dist/*",
"commonjs": "babel **/*.mjs --out-dir .",
"rename": "renamer --force --find \"/\\.js$/\" --replace \".mjs\" \"dist/**\"",
"test": "jest"
},
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"sideEffects": false,
"author": "Simon Alling",
"license": "MIT",
"repository": "https://github.com/MonoidDev/userscript-metadata",
"devDependencies": {
"@types/babylon": "^6.16.9",
"@types/escape-string-regexp": "^1.0.0",
"@types/jest": "^27.0.1",
"babel-cli": "^6.26.0",
"babel-plugin-dynamic-import-node": "^2.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^27.1.0",
"renamer": "^4.0.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"dependencies": {
"babel-extract-comments": "^1.0.0",
"babylon": "^6.18.0",
"escape-string-regexp": "^1.0.5",
"is-ip": "^3.1.0",
"is-valid-domain": "^0.1.2"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}