-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 943 Bytes
/
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
{
"name": "@satooru65536/ncss",
"description": "NCSS is not CSS.",
"author": "SatooRu65536",
"version": "1.0.4",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ncss-project/ncss"
},
"bugs": {
"url": "https://github.com/ncss-project/ncss/issues"
},
"keywords": [
"css",
"scss",
"ncss"
],
"bin": {
"ncss": "bin/ncss"
},
"scripts": {
"start": "yarn build && ./bin/ncss",
"build": "yarn tsc",
"create-command": "npm run build && npm link",
"v-patch": "npm version patch -m '🔖 Upgrade to %s' && npm publish",
"v-minor": "npm version minor -m '🔖 Upgrade to %s' && npm publish",
"v-major": "npm version major -m '🔖 Upgrade to %s' && npm publish"
},
"devDependencies": {
"@types/node": "^18.11.18",
"typescript": "^4.9.4"
},
"dependencies": {
"arg": "^5.0.2"
}
}