-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.36 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.36 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
{
"name": "datajunction",
"version": "0.0.105",
"description": "A Javascript client for interacting with a DataJunction server",
"module": "src/index.js",
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "rm -rf dist/* && webpack && babel src -d dist",
"lint": "prettier \"src/**/*.{js,jsx}\"",
"format": "prettier --write \"src/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DataJunction/dj.git"
},
"keywords": [
"datajunction",
"metrics",
"metrics-platform",
"semantic-layer"
],
"author": "DataJunction Authors",
"license": "MIT",
"bugs": {
"url": "https://github.com/DataJunction/dj/issues"
},
"homepage": "https://github.com/DataJunction/dj#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@babel/core": "^7.22.5",
"docker-names": "^1.2.1"
}
}