-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "cfpp",
"version": "2.4.1",
"description": "Codeforces extension pack",
"main": "src/index.js",
"author": "Leonardo Riether <riether.leonardo@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "rollup -c -w --environment NODE_ENV:development",
"build": "rollup -c --environment NODE_ENV:production",
"clean": "rm -r dist/",
"test": "node test/bundle.js",
"zip": "7z a dist/bundle.zip ./dist/extension/*"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/preset-react": "^7.6.3",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"hjson": "^3.2.1",
"lodash": "^4.17.21",
"puppeteer": "^2.1.1",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.2.1",
"rollup-plugin-inject-process-env": "^1.1.0",
"rollup-plugin-terser": "^5.2.0",
"serialize-javascript": "^3.1.0",
"tap-diff": "^0.1.1",
"tape": "^4.11.0"
},
"dependencies": {
"acorn": "^7.1.1",
"diff": "^3.5.0",
"minimist": "^1.2.3",
"rollup-plugin-import-css": "^2.0.0",
"webextension-polyfill": "^0.6.0"
}
}