-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.43 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
{
"name": "ooniprobe",
"version": "3.0.0-alpha.0",
"description": "The command line interface for OONI Probe",
"main": "src/ooni.js",
"license": "MIT",
"scripts": {
"dev": "webpack -w",
"pack": "webpack && pkg dist/ooni.js -c package.json -o packed/ooni",
"clean-home": "rm -rf ~/.ooni/measurements && rm -rf ~/.ooni/*.ldb"
},
"pkg": {
"scripts": [
"dist/*"
],
"targets": [
"node7-linux-x64",
"node7-macos-x64",
"node7-win-x64"
]
},
"devDependencies": {
"ansi-escapes": "^3.0.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"camelcase": "^4.1.0",
"chalk": "^2.1.0",
"child-process-promise": "^2.2.1",
"copy-webpack-plugin": "^4.1.0",
"debug": "^3.1.0",
"flow-babel-webpack-plugin": "^1.1.0",
"fs-extra": "^4.0.2",
"humanize": "^0.0.9",
"inquirer": "^3.3.0",
"keypress": "^0.2.1",
"lodash": "^4.17.4",
"lodash.range": "^3.2.0",
"moment": "^2.19.1",
"mri": "^1.1.0",
"ora": "^1.3.0",
"pkg": "^4.2.4",
"prettyjson": "^1.2.1",
"sequelize": "^4.22.5",
"shebang-loader": "^0.0.1",
"sqlite3": "^3.1.13",
"stream-splitter": "^0.3.2",
"string-length": "^2.0.0",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0",
"window-size": "^1.1.0",
"wrap-ansi": "^3.0.1"
},
"dependencies": {
"measurement-kit": "^0.1.0-alpha.5"
}
}