-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "camera-media-extractor",
"version": "1.3.2",
"description": "A media extractor from removable media",
"bin": {
"camera-media-extractor": "./dist/index.js"
},
"files": [
"dist"
],
"main": "index.js",
"scripts": {
"build:watch": "tsc --watch",
"build": "tsc",
"clean": "rimraf dist",
"start": "ts-node src/index.ts",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Daniel Perez",
"license": "ISC",
"dependencies": {
"exif": "^0.6.0",
"find": "^0.3.0",
"jest": "^24.9.0",
"ora": "^4.0.2",
"prompts": "^2.2.1",
"randomstring": "^1.1.5",
"yargs": "^14.2.0"
},
"devDependencies": {
"@types/exif": "^0.6.0",
"@types/find": "^0.2.1",
"@types/jest": "^24.0.21",
"@types/node": "^12.12.5",
"@types/prompts": "^2.4.0",
"@types/randomstring": "^1.1.6",
"@types/rimraf": "^2.0.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
}
}