-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
{
"name": "mondrian-rest-client",
"version": "2.0.3",
"description": "A javascript client for mondrian-rest.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "types/index.d.ts",
"readme": "README.md",
"files": [
"dist",
"types"
],
"scripts": {
"build": "cross-env NODE_ENV=production BABEL_ENV=production rollup --config rollup.config.js",
"dev": "cross-env NODE_ENV=development BABEL_ENV=development rollup --config rollup.config.js --watch",
"prepublishOnly": "npm run build",
"pretest": "cross-env NODE_ENV=test BABEL_ENV=test rollup --config rollup.config.js",
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest --config=jest.config.js"
},
"author": "Manuel Aristaran",
"contributors": [
"Francisco Abarzua <[email protected]>"
],
"license": "MIT",
"homepage": "https://github.com/Datawheel/mondrian-rest-client",
"repository": {
"type": "git",
"url": "git+https://github.com/Datawheel/mondrian-rest-client.git"
},
"bugs": {
"url": "https://github.com/Datawheel/mondrian-rest-client/issues"
},
"keywords": [
"dataset",
"datawheel",
"olap",
"mondrian",
"mondrian-rest"
],
"dependencies": {
"axios": "^0.19.0",
"form-urlencoded": "4.0.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@types/form-urlencoded": "^2.0.1",
"@types/url-join": "^4.0.0",
"babel-jest": "^24.8.0",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"rollup": "^1.19.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-license": "^0.10.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript2": "^0.22.1",
"typescript": "^3.5.3"
}
}