This repository was archived by the owner on Jul 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"name": "less-plugin-dynamic-variable",
"version": "1.0.0",
"description": "a less plugin to make theme using css variables work with less functions",
"main": "lib/index.js",
"author": "Arvin Xu<arvinx@foxmail.com>",
"scripts": {
"build": "father-build",
"test": "jest",
"cov": "jest --coverage",
"lint": "yarn lint-eslint && yarn tsc",
"prepublishOnly": "yarn build",
"tsc": "tsc -p tsconfig-check.json",
"lint-eslint": "eslint --cache --fix --ext .js,.jsx,.ts,.tsx --format=pretty src",
"clean": "rm -rf es lib dist build coverage src/.umi* .eslintcache"
},
"homepage": "https://github.com/arvinxx/less-plugin-dynamic-variable#readme",
"bugs": {
"url": "https://github.com/arvinxx/less-plugin-dynamic-variable/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/cosmiconfig": "^6.0.0",
"@types/less": "^3.0.2",
"@umijs/fabric": "^2.5.6",
"babel-plugin-add-module-exports": "^1.0.4",
"commitlint": "^11.0.0",
"commitlint-config-gitmoji": "^2.2.1",
"conventional-changelog-gitmoji-config": "^1.4.0",
"diff": "^5.0.0",
"eslint": "^7.19.0",
"father-build": "^1.19.1",
"husky": "^4.3.8",
"jest": "^26.6.3",
"less": "~3.13.1",
"prettier": "^2.2.1",
"semantic-release": "^17.3.7",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"cosmiconfig": "^7.0.0"
}
}