forked from joonas-yoon/boj-extended
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "boj-extended",
"version": "1.9.3",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "chmod +x util/build.sh && bash -c 'source util/build.sh'",
"lint": "eslint src",
"lint:fix": "eslint src --fix && prettier src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joonas-yoon/boj-extended.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/joonas-yoon/boj-extended/issues"
},
"homepage": "https://github.com/joonas-yoon/boj-extended#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-transform-arrow-functions": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.0",
"@babel/preset-env": "^7.16.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"babel-minify": "^0.5.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^7.32.0",
"eslint-auto-fix": "^1.0.3",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"prettier": "^2.5.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "7.0.0-beta.55",
"core-js": "^3.20.3"
}
}