-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "photosint",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack --watch --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "mocha --timeout 15000 --require @babel/register",
"test-with-coverage": "nyc npm run test",
"deploy": "CLIENT_ID=${CLIENT_ID} CLIENT_SECRET=${CLIENT_SECRET} REFRESH_TOKEN=${REFRESH_TOKEN} EXTENSION_ID=${EXTENSION_ID} node deploy.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"exif-js": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"chai": "^4.3.4",
"chrome-webstore-upload-cli": "^1.2.1",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"dotenv": "^10.0.0",
"html-webpack-plugin": "^5.3.2",
"jsdom": "^16.6.0",
"mocha": "^9.0.2",
"nyc": "^15.1.0",
"sinon-chrome": "^3.0.1",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2",
"zip-folder": "^1.0.0"
}
}