This repository was archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.02 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
{
"name": "hadron-react",
"description": "Hadron React Components",
"author": "Durran Jordan <durran@gmail.com>",
"bugs": "https://github.com/mongodb-js/hadron-react/issues",
"homepage": "https://github.com/mongodb-js/hadron-react",
"private": true,
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/hadron-react.git"
},
"license": "Apache-2.0",
"keywords": [
"mongodb-js"
],
"scripts": {
"install": "lerna bootstrap --concurrency=1",
"postinstall": "npm run compile",
"ci": "lerna bootstrap --ci --concurrency=1",
"postci": "npm run compile",
"check": "lerna run check",
"test": "lerna run test",
"test-ci": "npm run check && npm test",
"compile": "lerna run compile",
"prerelease": "lerna run check && lerna run compile && lerna run test",
"release": "lerna publish --allowBranch master",
"prepublishOnly": "echo 'Please use npm run release instead.\n' && exit 1"
},
"precommit": [
"check"
],
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"@babel/preset-react": "^7.8.3",
"@babel/register": "^7.8.6",
"babel-loader": "^8.0.6",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"chai": "^4.1.2",
"chai-enzyme": "1.0.0-beta.0",
"cross-env": "^7.0.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint-config-mongodb-js": "^5.0.3",
"ignore-loader": "^0.1.2",
"jsdom": "^12.2.0",
"jsdom-global": "^3.0.2",
"lerna": "^3.20.2",
"mocha": "^7.1.0",
"mocha-webpack": "^2.0.0-beta.0",
"mongodb-js-precommit": "^2.2.1",
"peer-deps-externals-webpack-plugin": "^1.0.4",
"pre-commit": "^1.2.2",
"prop-types": "^15.5.8",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^3.0.2",
"sinon": "^2.4.1",
"sinon-chai": "^3.5.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2",
"webpack-sources": "^1.4.3"
}
}