-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "biati.texttools",
"version": "3.2.2",
"description": "Nova Text Tools",
"main": "main.js",
"scripts": {
"build": "npx rollup -c",
"watch": "onchange -i \"Scripts/**/*.js\" -- npm run build",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"bump:patch": "bump patch package.json package-lock.json texttools.novaextension/extension.json texttools.novaextension/package.json",
"bump:minor": "bump minor package.json package-lock.json texttools.novaextension/extension.json texttools.novaextension/package.json",
"bump:major": "bump major package.json package-lock.json texttools.novaextension/extension.json texttools.novaextension/package.json"
},
"jest": {
"testEnvironment": "jest-environment-node",
"moduleDirectories": [
"node_modules",
"Scripts"
],
"transform": {},
"verbose": true
},
"keywords": [
"nova",
"sort",
"filter",
"generate",
"randomize",
"encode",
"decode",
"text tools",
"uuid"
],
"repository": {
"type": "git",
"url": "git+https://github.com/biati-digital/nova-text-tools.git"
},
"author": "biati",
"license": "MIT",
"bugs": {
"url": "https://github.com/biati-digital/nova-text-tools/issues"
},
"type": "module",
"homepage": "https://github.com/biati-digital/nova-text-tools#readme",
"dependencies": {
"change-case": "^4.1.2",
"esbuild": "^0.13.8",
"esprima-fb": "^15001.1001.0-dev-harmony-fb",
"html-entities": "^2.3.2",
"locutus": "^2.0.15",
"rollup-plugin-esbuild": "^4.6.0",
"uuid-random": "^1.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"jest": "^27.1.0",
"onchange": "^7.0.2",
"rollup": "^2.29.0"
}
}