-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
66 lines (66 loc) · 2.49 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
{
"name": "mithril-postgrest",
"version": "4.1.0",
"author": "Diogo Biazus",
"description": "A Mithril.js plugin to authenticate requests against PostgREST",
"main": "mithril-postgrest.umd.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.3",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-eval": "^7.0.0-beta.38",
"@babel/plugin-transform-for-of": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.8.3",
"@types/jasmine": "^3.5.10",
"@types/mithril": "^2.0.3",
"@types/underscore": "^1.10.22",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.6",
"jasmine-core": "^2.4.1",
"jasmine-expect": "^2.0.0-beta1",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.9",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^0.3.6",
"karma-nodewebkit-launcher": "0.0.12",
"karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^3.0.5",
"phantomjs": "^1.9.18",
"puppeteer": "^1.14.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-rollup-loader": "^0.8.0",
"yargs": "^3.24.0"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack --watch",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --mode production",
"postbuild:prod": "cp ./dist/mithril-postgrest.min.js ./mithril-postgrest.umd.js",
"test": "NODE_ENV=development ./node_modules/karma/bin/karma start"
},
"dependencies": {
"@babel/preset-env": "^7.9.5",
"karma-babel-preprocessor": "^5.2.2",
"mithril": "^1.1.6",
"underscore": "^1.8.3"
}
}