forked from mozilla/ensemble-transposer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "ensemble-transposer",
"version": "3.4.0",
"private": true,
"description": "ensemble-transposer re-formats existing data so that it can be used by the Firefox Public Data Report.",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/ensemble-transposer.git"
},
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla/ensemble-transposer/issues"
},
"homepage": "https://github.com/mozilla/ensemble-transposer#readme",
"engines": {
"node": ">=8.16.2"
},
"main": "src/index.js",
"scripts": {
"start": "node --eval \"require('./src').default();\"",
"test": "npm-run-all lint mocha",
"lint": "eslint --ext=.js,.json .",
"premocha": "npm start",
"mocha": "mocha src/tests/standard",
"precompare": "npm start",
"compare": "mocha src/tests/special/api-equivalence.test.js",
"posttest": "npm audit || true"
},
"dependencies": {
"aws-sdk": "2.720.0",
"big.js": "5.2.2",
"dotenv": "8.2.0",
"memoizee": "0.4.14",
"request": "2.88.2",
"request-promise-native": "1.0.9"
},
"devDependencies": {
"chai": "4.2.0",
"deep-equal-in-any-order": "1.0.28",
"eslint": "7.5.0",
"eslint-plugin-json": "2.1.2",
"eslint-plugin-mocha": "7.0.1",
"eslint-plugin-node": "11.1.0",
"mocha": "8.0.1",
"npm-run-all": "4.1.5"
}
}