-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "ng-alain-plugin-theme",
"version": "18.0.0",
"description": "NG-ALAIN theme plugin",
"keywords": [
"delon",
"ng-alain",
"ng-alain-plugin"
],
"author": "cipchk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ng-alain/plugin-theme/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-alain/plugin-theme.git"
},
"homepage": "https://ng-alain.com",
"bin": {
"ng-alain-plugin-theme": "lib/index.js"
},
"sideEffects": false,
"scripts": {
"tsc": "tsc",
"watch": "tsc --w",
"lint": "eslint 'lib/**/*.ts'",
"build": "bash ./build.sh",
"build:test": "bash ./build.sh -t",
"test": "TS_NODE_PROJECT=./test/tsconfig.json npm run mocha --recursive ./test/**/*.spec.ts",
"mocha": "mocha -r ts-node/register",
"release": "npm run build && cd dist && npm publish --access public",
"release:next": "npm run build && cd dist && npm publish --access public --tag next"
},
"dependencies": {
"jsonc-parser": "^3.2.0",
"less": "^4.1.3",
"less-plugin-clean-css": "^1.5.1",
"less-vars-to-js": "^1.3.0",
"meow": "^9.0.0",
"postcss": "^8.4.18",
"postcss-less": "^6.0.0"
},
"devDependencies": {
"@delon/theme": "^17.0.0",
"@types/chai": "^4.3.3",
"@types/less": "^3.0.3",
"@types/meow": "^6.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"chai": "^4.3.6",
"eslint": "^8.26.0",
"mocha": "^10.1.0",
"ng-zorro-antd": "^18.0.0",
"postcss": "^8.4.18",
"postcss-less": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "~5.4.2"
}
}