-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.03 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
{
"name": "js-var-to-css-var",
"version": "1.1.2",
"description": "Convert Js Var To CSS Var",
"sideEffect": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": {
"js-var-to-css-var": "./lib/index.js"
},
"author": "Jason Feng <solidzoro@live.com>",
"homepage": "https://github.com/SolidZORO/js-var-to-css-var",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SolidZORO/js-var-to-css-var.git"
},
"bugs": {
"url": "https://github.com/SolidZORO/js-var-to-css-var/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"-------------------------------- TOOL ----": "----",
"versionup": "standard-version -r patch",
"versionup:minor": "standard-version -r minor",
"versionup:major": "standard-version -r major",
"versionup:init": "standard-version --first-release",
"-------------------------------- CI/CD ----": "----",
"sync-dotenv-to-github-secrets": "node ./.github/workflows/sync-dotenv-to-github-secrets.js",
"-------------------------------- TEST ----": "----",
"test-output--ts": "node ./__tests__/test-output--ts.ts",
"test-output--js": "node ./__tests__/test-output--js.js",
"test-output--js-by-ts-node": "node ./__tests__/test-output--js-by-ts-node.ts",
"test-output--all": "yarn test-output--js && yarn test-output--ts && yarn test-output--js-by-ts-node",
"dev": "tsc --watch",
"-------------------------------- PROD ----": "----",
"build": "tsc",
"release-beta": "npm publish --dist-tag --tag beta",
"release": "npm publish --dist-tag"
},
"keywords": [
"js",
"less",
"vars",
"var",
"generator",
"css",
"convert",
"webpack",
"plugin",
"webpack-plugin"
],
"devDependencies": {
"@types/node": "^18.11.17",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}