-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 KB
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
{
"name": "@riddance/env",
"version": "0.4.3",
"type": "module",
"keywords": [
"riddance",
"environment",
"devenv",
"opinionated"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@types/node": "^18",
"@types/mocha": "10.0.3",
"@tsconfig/node18": "18.2.2",
"@typescript-eslint/eslint-plugin": "6.10.0",
"@typescript-eslint/parser": "6.10.0",
"cspell-lib": "7.3.8",
"eslint": "8.53.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-n": "16.2.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "49.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"mocha": "10.2.0",
"prettier": "3.0.3",
"source-map-support": "0.5.21",
"typescript": "5.2.2"
},
"devDependencies": {
"@types/eslint": "8.44.6"
},
"scripts": {
"prepare": "tsc && node ./bin/prepare.js",
"start": "npm run prepare && node ./bin/install.js && node ./bin/watch.js",
"prepack": "npm run prepare && node ./bin/build.js",
"prepublishOnly": "tsc && node ./bin/prepublish.js",
"postpublish": "node ./bin/sync.js",
"postinstall": "node ./bin/install.js",
"postversion": "node ./bin/update.js"
},
"files": [
"template/**",
"*.js",
"lib/*.js",
"bin/*.js",
"bin/lib/*.js"
],
"bin": {
"riddance-watch": "./bin/watch.js",
"riddance-build": "./bin/build.js",
"riddance-prepublish": "./bin/prepublish.js",
"riddance-sync": "./bin/sync.js"
}
}