-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (41 loc) · 844 Bytes
/
package.json
File metadata and controls
43 lines (41 loc) · 844 Bytes
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
{
"name": "nucleus-deploy",
"version": "0.1.0",
"description": "Atomic Smash Deployment scripts neatly wrapped up in an npm package",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nucleus": "bin/nucleus"
},
"exports": {
".": "./dist/index.js"
},
"files": [
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node ./scripts/build.js",
"prepare": "npm run build",
"test": "node ./scripts/test.js",
"dev": "node ./src/index.js",
"start": "node ./src/index.js",
"postinstall": "node ./dist/install.js"
},
"keywords": [
"deployment",
"tooling",
"scripts"
],
"author": "Matt Stone",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"yaml": "^2.5.1"
}
}