-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "backpax",
"version": "1.0.8",
"description": "Simple JavaScript Library to add parallax image to background-image",
"main": "lib/index.js",
"type": "lib/index.d.ts",
"scripts": {
"test": "jest",
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js && cp bundle/backpax.js docs/backpax.js",
"build:lib": "tsc",
"np": "np --no-cleanup --no-tests",
"deploy": "npm-run-all -s build build:lib np"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/appleple/backpax"
},
"keywords": [
"parallax"
],
"homepage": "https://appleple.github.io/backpax",
"author": {
"name": "appleple",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.27",
"awesome-typescript-loader": "^5.2.1",
"html-minifier": "^3.5.21",
"jest": "^23.6.0",
"jest-puppeteer": "^3.7.0",
"np": "^3.1.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^1.11.0",
"typescript": "^3.5.2",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.5"
},
"dependencies": {
"array.prototype.find": "^2.1.1",
"es6-object-assign": "^1.1.0"
}
}