-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
106 lines (106 loc) · 3.6 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "manifold",
"version": "1.1.4",
"description": "A suite of machine learning visualization utilities",
"license": "Apache-2.0",
"private": true,
"author": "Firenze11 <lezhi.li@uber.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/uber/manifold.git"
},
"keywords": [
"ml",
"visualization",
"babel",
"react",
"redux",
"es6"
],
"workspaces": [
"modules/*",
"bindings/jupyter-modules/*"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-import": "^1.10.0",
"babel-plugin-module-resolver": "^3.1.1",
"css-loader": "^1.0.0",
"csv-loader": "^3.0.2",
"depcheck": "^0.8.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^5.6.1",
"eslint-config-uber-universal-stage-3": "^3.0.1",
"eslint-plugin-cup": "^2.0.0",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.11.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-config": "^24.8.0",
"lerna": "^3.14.1",
"less": "^3.8.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.7.0",
"node-sass": "^4.11.0",
"ocular-dev-tools": "0.0.30",
"postcss-loader": "^3.0.0",
"puppeteer": "^1.9.0",
"react": "^16.9.0",
"react-redux": "^7.1.1",
"react-test-renderer": "^16.5.2",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"styled-components": "^4.3.2",
"styletron-engine-atomic": "^1.4.1",
"styletron-react": "^5.2.1",
"webpack-bundle-analyzer": "^3.4.1"
},
"scripts": {
"lint": "eslint modules",
"cover": "jest --coverage --config=jest.config.js",
"test": "jest",
"clean": "ocular-clean all",
"build": "ocular-clean all && ocular-build --dist esm && lerna run build",
"publish": "npm run lerna:publish",
"-------- LERNA --------": "",
"bump": "npm run lerna:bump",
"lerna": "lerna",
"lerna:depcheck": "lerna exec --since master --parallel -- depcheck",
"lerna:bump": "lerna version --no-push && npm run lerna:sync && npm run lerna:git",
"lerna:sync": "jq -M --argfile lerna lerna.json '.version = $lerna.version' package.json > tmp.json && mv tmp.json package.json",
"lerna:git": "git add package.json && git commit --amend",
"lerna:publish": "lerna exec cp package.json dist && lerna exec --no-private npm publish dist",
"-------- WEBSITE --------": "",
"install:all": "yarn clean && yarn install && yarn install:web",
"install:web": "yarn install:example && cd website && yarn install",
"install:example": "cd examples/manifold && yarn install",
"deploy": "cd website && yarn build && git checkout gh-pages && cp -r dist/* .. && git add .. && git commit -m 'Update website' && git push origin gh-pages && git checkout master",
"-------- SYNC(deprecated) --------": "",
"sync": "scripts/sync.sh",
"traverse": "python scripts/traverse.py"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.4.0",
"yarn": ">=1.17.0"
},
"bugs": {
"url": "https://github.com/uber/manifold/issues"
},
"homepage": "https://github.com/uber/manifold#readme"
}