-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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
{
"name": "carousels",
"version": "0.2.0",
"description": "Babel parser to analyze performance of JavaScript code",
"main": "src/carousels.js",
"scripts": {
"test": "mocha --reporter spec",
"lint": "eslint .",
"build:rust": "cd rust && ./build.sh",
"build:browserify": "browserify src/index.js --debug --s carousels -o dist/carousels.js",
"build": "npm run build:rust && npm run build:browserify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/multiparty/carousels.git"
},
"author": "Boston University Software & Application Innovation Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/multiparty/carousels/issues"
},
"keywords": [
"javascript",
"rust",
"secure multiparty computation",
"MPC",
"performance",
"analysis"
],
"homepage": "https://github.com/multiparty/carousels#readme",
"dependencies": {
"atob": "^2.1.2",
"babel-core": "^6.26.3",
"chai": "^4.2.0",
"mathjs": "^6.6.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"browserify": "^16.5.0",
"eslint": "^6.8.0",
"eslint-plugin-requirejs": "^4.0.0",
"mocha": "^7.1.0",
"wasm-pack": "^0.9.1"
},
"directories": {
"test": "test"
}
}