-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.79 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
58
59
60
61
62
63
64
65
66
67
{
"name": "retoric",
"version": "0.2.5",
"type": "module",
"description": "A npm package to argue on artifacts",
"main": "dist/index-require.cjs",
"module": "src/index.js",
"modules.root": "src",
"scripts": {
"start": "nodemon src/index.js",
"test": "jest",
"build": "webpack --mode production",
"prepublish": "npm run build",
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test:cache": "jest --clearCache",
"test:run": "npm run test:cache && jest",
"test:watch": "npm run test:cache && jest --watchAll --collect-coverage --coverage",
"release": "npm run prepublish && np --any-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trouchet/retoric.git"
},
"keywords": [
"debugging",
"boolean"
],
"author": "brunolnetto",
"license": "MIT",
"bugs": {
"url": "https://github.com/trouchet/retoric/issues"
},
"homepage": "https://github.com/trouchet/retoric#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"husky": "^9.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"nodemon": "^3.0.0",
"np": "^10.0.0",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"arqeo": "^0.3.0",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"fs": "^0.0.1-security",
"https-browserify": "^1.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0",
"util": "^0.12.5",
"winston": "^3.8.2"
}
}