-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.35 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
{
"name": "photo-tools",
"version": "0.0.6",
"private": true,
"description": "a set of photo organizing scripts and tools, based on nodejs",
"type": "module",
"scripts": {
"clean": "rimraf node_modules/",
"devrun": "clear && ./script/devrun",
"devrun:loop": "./script/saveloop . clear ./script/devrun",
"lint": "eslint src test",
"lint:fixall": "./script/lint-all.js",
"lint:fixall2": "eslint src/**/*.js test/**/*.js --fix",
"syncTestdata": "./sync-testfiles",
"relink": "./script/relink",
"checklinks": "./script/checklinks",
"phowdy": "./script/phowdy.js",
"phowdy:loop": "./script/saveloop . clear ./script/phowdy.js",
"test": "mocha --loader=esmock",
"test-util:loop": "./script/saveloop /depot/PUBLIC/@nocke/util/ clear 'npm t'",
"test:loop": "./script/saveloop . clear \"npm t $npm_config_test\""
},
"dependencies": {
"@nocke/util": "0.1.1",
"commander": "^9.4.1",
"enquirer": "^2.3.6",
"trash": "^8.1.1"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"chai": "^4.3.7",
"eslint": "^8.32.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"esmock": "^2.1.0",
"jest": "^29.4.1",
"mocha": "^10.2.0",
"photo-testfiles": "github:nocke/photo-testfiles#v1.1.0",
"rimraf": "^4.1.2",
"sinon": "^15.0.1"
}
}