-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 959 Bytes
/
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
{
"name": "dcrtimejs",
"version": "1.0.0",
"description": "javascript wrapper for dcrtime",
"main": "src/dcrtime.js",
"author": "tiagoalvesdulce",
"license": "MIT",
"type": "module",
"browser": {
"buffer": false
},
"exports": {
".": "./src/dcrtime.js",
"./utils": "./src/utils.js"
},
"scripts": {
"start": "node src/*.js",
"lint": "eslint src/*.js",
"lint:fix": "eslint src/*.js test/*.js --fix",
"test": "./node_modules/mocha/bin/mocha.js -r esm test/*.test.js"
},
"files": [
"src/dcrtime.js",
"src/utils.js"
],
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"esm": "^3.2.25",
"mocha": "^10.1.0"
},
"peerDependencies": {
"crypto-js": "^4.1.1"
},
"dependencies": {
"crypto-js": "^4.1.1"
}
}