-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.78 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": "bsocial",
"version": "0.0.1",
"description": "BSocial npm module",
"repository": {
"type": "git",
"url": "https://github.com/icellan/bsocial.git"
},
"precommit": "test",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist/",
"build": "rimraf dist/ && babel src/ --presets minify --out-dir dist/",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testquiet": "./node_modules/.bin/jest --detectOpenHandles --forceExit --silent",
"testonly": "./node_modules/.bin/jest --collectCoverage --detectOpenHandles --forceExit",
"testwatch": "./node_modules/.bin/jest --watchAll --collectCoverage --logHeapUsage --detectOpenHandles",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testwatch",
"check": "./node_modules/.bin/npm-check -u",
"prepare": "npm run clean && npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-minify": "^0.5.1",
"bsv": "^1.5.4",
"eslint": "^7.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"jest-slow-test-reporter": "^1.0.0",
"npm-check": "5.9.2",
"pre-commit": "^1.2.2",
"regenerator-runtime": "^0.13.7",
"rimraf": "3.0.2",
"run-sequence": "2.2.1"
},
"dependencies": {},
"peerDependencies": {
"bsv": "^1.5.4"
},
"jest": {
"transform": {
"^.+\\.(mjs|jsx|js)$": "babel-jest"
}
}
}