-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.84 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
{
"name": "zoom.ts",
"version": "8.0.0",
"description": "A lightweight TypeScript library for image zooming, as seen on Medium.",
"homepage": "https://github.com/michaelbull/zoom.ts#readme",
"license": "ISC",
"main": "dist/zoom.js",
"types": "dist/types/index.d.ts",
"style": "dist/zoom.css",
"sass": "style.scss",
"author": {
"name": "Michael Bull",
"url": "https://www.michael-bull.com"
},
"keywords": [
"zoom.ts",
"zoom.js",
"image",
"zoom",
"zooming",
"medium"
],
"repository": {
"type": "git",
"url": "https://github.com/michaelbull/zoom.ts"
},
"bugs": {
"url": "https://github.com/michaelbull/zoom.ts/issues"
},
"files": [
"src",
"dist",
"style.scss"
],
"scripts": {
"clean": "rimraf dist reports",
"start": "webpack-dev-server --mode=development --inline --hot",
"prebuild": "npm run clean",
"build": "webpack --mode=production",
"predeploy": "npm run build",
"deploy": "push-dir --dir=dist --branch=gh-pages",
"pretest": "rimraf reports/coverage",
"test": "jest --config=test/jest.config.js --coverage",
"test:watch": "jest --config=test/jest.config.js --watch",
"prepublishOnly": "npm-run-all test build"
},
"devDependencies": {
"@types/jest": "26.0.20",
"css-loader": "5.0.1",
"cssnano": "4.1.10",
"cssnano-preset-advanced": "4.0.7",
"file-loader": "6.2.0",
"html-webpack-plugin": "4.5.1",
"jest": "26.6.3",
"mini-css-extract-plugin": "1.3.5",
"npm-run-all": "4.1.5",
"postcss-loader": "4.2.0",
"push-dir": "0.4.1",
"rimraf": "3.0.2",
"sass": "1.32.5",
"sass-loader": "10.1.1",
"style-loader": "2.0.0",
"ts-jest": "26.5.0",
"ts-loader": "8.0.14",
"typescript": "4.1.3",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}