forked from hMatoba/piexifjs
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.88 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
63
64
65
66
67
68
{
"name": "piexif-ts",
"version": "2.1.0",
"description": "Read and write exif with typescript!",
"main": "dist/piexif.js",
"module": "dist/piexif.es.js",
"browser": "dist/piexif.browser.js",
"types": "dist/index.d.ts",
"files": [
"dist/piexif.js",
"dist/piexif.js.map",
"dist/*.d.ts",
"LICENSE.txt",
"README.md",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/holwech/piexif-ts.git"
},
"keywords": [
"jpeg",
"exif",
"node",
"browser"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint \"*/**/*.ts\"",
"node-test": "jest --config=jest.node.config.js",
"browser-test": "jest --config=jest.puppeteer.config.js",
"test": "npm run node-test && npm run browser-test",
"build": "rollup -c",
"build:watch": "rollup -cw",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A",
"postversion": "git push && git push --tags"
},
"author": "hMatoba, Joachim Holwech",
"license": "MIT",
"bugs": {
"url": "https://github.com/holwech/piexif-ts/issues"
},
"homepage": "https://github.com/holwech/piexif-ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^23.5.0",
"jest-puppeteer": "^3.3.1",
"jpeg-js": "^0.3.4",
"prettier": "^1.18.2",
"puppeteer": "^1.4.0",
"rimraf": "^2.6.2",
"rollup": "^0.64.1",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"ts-loader": "^4.5.0",
"typescript": "^3.0.1"
},
"dependencies": {}
}