-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.28 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.28 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
{
"name": "ns",
"version": "1.0.0",
"description": "An interactive command-line utility for npm scripts navigation",
"main": "build/index",
"scripts": {
"build": "NODE_ENV='production' MODE='asdasd' npx webpack --config webpack.config.js",
"format": "prettier --write 'src/**/*.*'",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "yarn run build",
"watch": "NODE_ENV='development' webpack --config webpack.config.js"
},
"bin": {
"ns": "./build/index"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/musienkoyuriy/ns.git"
},
"keywords": [
"npm",
"npm-scripts",
"cli"
],
"author": "yuriymusienko",
"license": "MIT",
"bugs": {
"url": "https://github.com/musienkoyuriy/ns/issues"
},
"homepage": "https://github.com/musienkoyuriy/ns#readme",
"dependencies": {
"@types/node": "^17.0.18",
"@types/react": "^17.0.39",
"ink": "^3.2.0",
"ink-select-input": "^4.2.1",
"ink-text-input": "^4.0.3",
"react": "^17.0.2"
},
"files": [
"build"
],
"devDependencies": {
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"webpack": "^5.69.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
}
}