-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "get-orientation",
"version": "1.1.2",
"description": "Get orientation from image file",
"main": "index.js",
"types": "index.d.ts",
"browser": "browser.js",
"dependencies": {
"stream-parser": "^0.3.1"
},
"devDependencies": {
"@prescott/commitlint-preset": "1.0.2",
"@prescott/semantic-release-config": "1.0.1",
"@prescott/tslint-preset": "1.0.1",
"@rollup/plugin-commonjs": "19.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@rollup/plugin-typescript": "8.2.1",
"@types/chai": "4.2.19",
"@types/debug": "4.1.5",
"@types/mocha": "8.2.2",
"@types/node": "12.20.15",
"@types/selenium-webdriver": "4.0.14",
"browserstack-local": "1.4.8",
"chai": "4.3.4",
"husky": "6.0.0",
"intern": "4.9.1",
"mocha": "9.0.1",
"rollup": "2.52.1",
"selenium-webdriver": "4.0.0-beta.4",
"semantic-release": "17.4.4",
"ts-node": "10.0.0",
"tslint": "6.1.3",
"typescript": "4.3.4"
},
"scripts": {
"clean": "rm -rf dist && ls *.d.ts *.js *.map | grep -E '(index|base|stream-parser|browser)' | xargs rm -f",
"prebuild": "cp browser.ts browser.es5.ts",
"build": "npm run clean && tsc && rollup -c rollup.config.js",
"postbuild": "rm browser.es5.ts",
"prepublishOnly": "npm run build",
"pretest": "npm run clean && npm run build && npm run seed",
"test": "npm run test:node && npm run test:browser",
"seed": "test -e fixtures/exif-examples || git clone https://github.com/ianare/exif-samples.git fixtures/exif-examples --depth=1",
"test:node": "mocha -r ts-node/register index.spec.ts",
"test:browser": "intern",
"test:browserstack": "mocha -t 3600000 -r ts-node/register test.e2e.browserstack.ts",
"posttest": "npm run clean",
"lint": "tslint -c tslint.json '*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooyoul/get-orientation.git"
},
"keywords": [
"image",
"exif",
"jpeg",
"jpg",
"tiff",
"image-orientation",
"orientation"
],
"author": "MooYeol Prescott Lee <mooyoul@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mooyoul/get-orientation/issues"
},
"homepage": "https://github.com/mooyoul/get-orientation#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@prescott/commitlint-preset"
]
}
}