-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
62 lines (62 loc) · 1.49 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": "exif-be-gone",
"version": "1.5.1",
"description": "Remove EXIF data from your image files.",
"main": "index.js",
"bin": {
"exif-be-gone": "cli.js"
},
"types": "index.d.ts",
"scripts": {
"build": "tsc -p . && chmod 755 cli.js",
"test": "npm run build && mocha -R spec spec/*.spec.js",
"test:samples": "npm run build && ./scripts/test.sh",
"lint": "standardx *.ts **/*.ts",
"lint:fix": "standardx *.ts **/*.ts --fix"
},
"author": "Josh Hull",
"repository": {
"type": "git",
"url": "git+https://github.com/joshbuddy/exif-be-gone.git"
},
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.2",
"@types/node": "^18.6.3",
"@types/stream-buffers": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"buffer-to-stream": "1.0.0",
"chai": "4.2.0",
"mocha": "8.1.1",
"standardx": "^7.0.0",
"stream-buffers": "^3.0.2",
"typescript": "^4.7.4",
"typescript-eslint": "0.0.1-alpha.0"
},
"eslintConfig": {
"ignorePatterns": [
"**/*.d.ts"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"files": [
"README.md",
"index.ts",
"index.d.ts",
"index.d.ts.map",
"index.js",
"tsconfig.json",
"cli.js"
]
}