-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "ristretto255",
"version": "0.1.3",
"description": "Supports the ristretto255 group operations on top of TweetNaCl.js",
"main": "dist/ristretto255.min.js",
"repository": {
"type": "git",
"url": "https://github.com/facebook/ristretto255-js.git"
},
"author": "Valeria Nikolaenko <valerini@fb.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-jest": "^26.6.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2"
},
"resolutions": {
"minimist": "^1.2.5"
},
"scripts": {
"build": "rollup --config config/rollup.config.js",
"test": "jest --config config/jest.config.js",
"lint": "eslint --config config/eslint.config.js src/ristretto255.js src/ristretto255.test.js ristretto255.benchmarks.js config/*.js"
},
"browserslist": "> 0.25%, not dead",
"dependencies": {
"tweetnacl": "^1.0.3"
}
}