-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
77
{
"name": "ulysse",
"author": "johackim",
"description": "Simple CLI tool for blocking your distracting apps and websites",
"homepage": "https://github.com/getulysse/ulysse",
"license": "GPL-3.0",
"main": "dist/index.js",
"version": "0.5.0",
"engines": {
"node": ">=14.0.0"
},
"os": [
"linux"
],
"bin": {
"ulysse": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getulysse/ulysse.git"
},
"bugs": {
"url": "https://github.com/getulysse/ulysse/issues"
},
"keywords": [
"cli",
"linux",
"ulysse",
"blocker",
"deepwork",
"distraction",
"productivity"
],
"dependencies": {
"dns-packet": "^5.6.1",
"gun": "^0.2020.1240"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"rollup": "^4.12.0"
},
"scripts": {
"lint": "eslint src",
"prepublishOnly": "npm run build",
"prebuild": "rm -rf dist",
"build": "rollup --bundleConfigAsCjs -c",
"start": "babel-node src/index.js",
"test": "DOTENV_CONFIG_PATH=.env.test jest -i --setupFiles dotenv/config --forceExit"
},
"jest": {
"globalSetup": "./jest.setup.js",
"restoreMocks": true,
"transformIgnorePatterns": [],
"transform": {
"\\.js$": [
"babel-jest",
{
"configFile": "./babel.config.js"
}
]
}
}
}