-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.51 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
{
"name": "latency-histogram",
"productName": "Compass Latency Histogram package",
"version": "0.0.1",
"description": "Displays a histogram with aggregated operation latency of reads, writes and commands",
"main": "index.js",
"scripts": {
"ci": "npm run check && npm test",
"fmt": "mongodb-js-fmt ./*.js ./test/*.js",
"check": "mongodb-js-precommit './src/**/*{.js,.jsx}' './test/**/*.js' index.js",
"compile": "npm run jsx && npm run less",
"jsx": "babel ./src --out-dir ./lib --presets react",
"preless": "lessc ./styles/compass/index.less ./lib/styles/compass/index.css",
"less": "lessc ./styles/index.less ./lib/styles/index.css",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"prestart": "npm run compile",
"start": "electron ./electron",
"storybook": "start-storybook -p 9001",
"test": "hadron-build test",
"test-enzyme": "npm test -- --enzyme",
"test-main": "npm test -- --main",
"test-renderer": "npm test -- --renderer",
"test-unit": "npm test -- --unit",
"test-functional": "npm test -- --functional"
},
"precommit": [
"check"
],
"license": "Apache-2.0",
"devDependencies": {
"@kadira/react-storybook-addon-info": "^3.2.1",
"@kadira/storybook": "^2.3.0",
"babel-cli": "^6.10.1",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.9.0",
"bootstrap": "https://github.com/twbs/bootstrap/archive/v3.3.5.tar.gz",
"chai": "^3.5.0",
"chai-as-promised": "^5.1.0",
"chai-enzyme": "^0.5.0",
"debug": "^2.2.0",
"electron": "^1.6.1",
"electron-mocha": "^3.3.0",
"enzyme": "^2.4.1",
"eslint-config-mongodb-js": "^2.1.0",
"font-awesome": "^4.7.0",
"hadron-app": "^0.8.0",
"hadron-app-registry": "^5.2.0",
"hadron-react-components": "^1.1.0",
"hadron-build": "^9.1.0",
"hadron-reflux-store": "0.0.3",
"hadron-spectron": "^0.0.1",
"hadron-type-checker": "^2.0.0",
"highlight.js": "^8.9.1",
"jsdom": "^9.4.2",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mocha": "^2.5.3",
"mongodb-data-service": "^3.0.0",
"mongodb-js-fmt": "^0.0.3",
"mongodb-js-precommit": "^0.2.8",
"mongodb-runner": "^3.5.0",
"pre-commit": "^1.1.3",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-fontawesome": "^1.6.1",
"reflux": "^0.4.1",
"reflux-state-mixin": "^0.7.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"watch": "^1.0.2"
},
"dependencies": {
"react-vega-lite": "^1.0.1"
}
}