-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"name": "@68publishers/amp-client",
"version": "1.7.0",
"description": "JS Client for 68publishers/amp",
"homepage": "http://www.68publishers.io/",
"main": "index.mjs",
"repository": {
"type": "git",
"url": "git+https://github.com/68publishers/amp-client-js.git"
},
"scripts": {
"build:dev": "webpack --config webpack.config.dev.js --progress --profile",
"build:prod": "webpack --config webpack.config.prod.js --progress --profile",
"start:dev": "webpack --config webpack.config.dev.js --progress --profile && webpack-dev-server --config webpack.config.dev.js",
"eslint:fix": "eslint ./index.mjs ./src --ext .mjs --fix",
"eslint": "eslint ./index.mjs ./src --ext .mjs"
},
"keywords": [
"68publishers",
"amp",
"js-client",
"amp-js-client"
],
"author": "68publishers",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.5",
"babel-loader": "^8.3.0",
"eslint": "^8.55.0",
"lodash-webpack-plugin": "^0.11.6",
"path": "^0.12.7",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"lodash": "^4.17.21",
"query-string": "^8.1.0"
},
"files": [
"src",
"index.mjs",
"dist/amp-client.min.js",
"dist/amp-client.standalone.min.js"
]
}