-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@fratercula/falco",
"version": "1.6.0",
"description": "JavaScript Runner",
"preferGlobal": true,
"main": "index.js",
"files": [
"bin",
"lib",
"index.js"
],
"bin": {
"falco": "./bin/falco.js"
},
"scripts": {
"start": "node test/start.js",
"lint": "eslint .",
"test:unit": "mocha --timeout 60000 --reporter dot --require intelli-espower-loader ./test/index.js",
"test:cover": "nyc npm run test:unit",
"test": "npm run lint && npm run test:cover",
"coverage": "nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fratercula/falco.git"
},
"keywords": [
"webpack",
"babel",
"transcoder"
],
"author": "LoeiFy <LoeiFy@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fratercula/falco/issues"
},
"engines": {
"node": ">=7.10.1"
},
"homepage": "https://github.com/fratercula/falco#readme",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"fs-extra": "^7.0.1",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"minimist": "^1.2.5",
"style-loader": "^0.23.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^1.4.3",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-dev-server": "^3.10.3"
},
"devDependencies": {
"expect": "^24.9.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^6.2.3",
"nyc": "^14.1.1",
"power-assert": "^1.6.1"
}
}