-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "auth0-extensions-cli",
"version": "4.0.4",
"description": "Command-line tool allowing you to build a Node.js backend as an Auth0 Extension",
"engines": {
"node": ">=6.9.1"
},
"repository": {
"type": "git",
"url": "git://github.com/auth0-extensions/auth0-extensions-cli"
},
"main": "index.js",
"bin": {
"a0-ext": "./bin/a0-ext"
},
"scripts": {
"test": "mocha './test/**/*.test.js' --timeout 10000"
},
"dependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.2.0",
"adm-zip": "^0.4.13",
"async": "^2.2.0",
"babel-loader": "^8.0.4",
"bluebird": "^3.5.0",
"caporal": "^1.4.0",
"chalk": "^1.1.3",
"file-loader": "^1.1.11",
"glob": "^7.1.1",
"load-json-file": "^2.0.0",
"lodash": "^4.17.19",
"mini-css-extract-plugin": "^0.5.0",
"postcss-focus": "^1.0.0",
"postcss-loader": "^3.0.0",
"postcss-reporter": "^1.3.3",
"postcss-simple-vars": "^3.0.0",
"semver": "5.5.0",
"superagent": "^4.1.0",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-serve": "^0.3.1",
"webpack-stats-plugin": "^0.2.1",
"webtask-json-validator": "~4.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "^4.19.1",
"eslint-config-auth0-base": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "5.0.5"
}
}