go-core 0.1.921-beta.0 → 0.1.921-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,163 +1,164 @@
1
- {
2
- "name": "go-core",
3
- "version": "0.1.921-beta.0",
4
- "description": "ANOV-GO配置平台核心库",
5
- "keywords": [
6
- "anov",
7
- "anov-go",
8
- "core"
9
- ],
10
- "main": "dist/code.umd.js",
11
- "module": "dist/code.es5.js",
12
- "typings": "dist/types/code.d.ts",
13
- "files": [
14
- "dist/code.umd.js",
15
- "dist/code.es5.js"
16
- ],
17
- "author": "ws",
18
- "repository": {
19
- "type": "git",
20
- "url": "https://gitee.com/wangdashuai/go-core.git"
21
- },
22
- "license": "MIT",
23
- "engines": {
24
- "node": ">=6.0.0"
25
- },
26
- "scripts": {
27
- "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
28
- "clearyarn": "rimraf dist",
29
- "build": "tsc --module commonjs && rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
30
- "start": "rollup -c rollup.config.ts -w",
31
- "test": "jest --coverage",
32
- "test:watch": "jest --coverage --watch",
33
- "test:prod": "npm run lint && npm run test -- --no-cache",
34
- "deploy-docs": "ts-node tools/gh-pages-publish",
35
- "report-coverage": "cat ./coverage/lcov.info | coveralls",
36
- "commit": "git-cz",
37
- "semantic-release": "semantic-release",
38
- "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
39
- "precommit": "lint-staged",
40
- "travis-deploy-once": "travis-deploy-once",
41
- "prepush": "npm run test:prod && npm run build",
42
- "commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
43
- "postinstall": "patch-package"
44
- },
45
- "lint-staged": {
46
- "{src,test}/**/*.ts": [
47
- "prettier --write",
48
- "git add"
49
- ]
50
- },
51
- "config": {
52
- "commitizen": {
53
- "path": "node_modules/cz-conventional-changelog"
54
- }
55
- },
56
- "publishConfig": {
57
- "access": "public",
58
- "registry": "https://registry.npmjs.org/"
59
- },
60
- "jest": {
61
- "transform": {
62
- ".(ts|tsx)": "ts-jest"
63
- },
64
- "testEnvironment": "node",
65
- "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
66
- "moduleFileExtensions": [
67
- "ts",
68
- "tsx",
69
- "js"
70
- ],
71
- "coveragePathIgnorePatterns": [
72
- "/node_modules/",
73
- "/test/"
74
- ],
75
- "coverageThreshold": {
76
- "global": {
77
- "branches": 90,
78
- "functions": 95,
79
- "lines": 95,
80
- "statements": 95
81
- }
82
- },
83
- "collectCoverageFrom": [
84
- "src/*.{jsx}"
85
- ]
86
- },
87
- "prettier": {
88
- "semi": false,
89
- "singleQuote": true
90
- },
91
- "commitlint": {
92
- "extends": [
93
- "@commitlint/config-conventional"
94
- ]
95
- },
96
- "devDependencies": {
97
- "@commitlint/cli": "^7.1.2",
98
- "@commitlint/config-conventional": "^7.1.2",
99
- "@types/crypto-js": "^4.1.1",
100
- "@types/dom-to-image": "^2.6.4",
101
- "@types/esprima": "^4.0.3",
102
- "@types/estraverse": "^5.1.2",
103
- "@types/jest": "^23.3.2",
104
- "@types/lodash": "^4.14.186",
105
- "@types/node": "^10.11.0",
106
- "@wdslib/go-utils": "^0.2.2",
107
- "colors": "^1.3.2",
108
- "commitizen": "^3.0.0",
109
- "coveralls": "^3.0.2",
110
- "cross-env": "^5.2.0",
111
- "cz-conventional-changelog": "^2.1.0",
112
- "jest": "^23.6.0",
113
- "jest-config": "^23.6.0",
114
- "lint-staged": "^8.0.0",
115
- "lodash.camelcase": "^4.3.0",
116
- "prettier": "^1.14.3",
117
- "prompt": "^1.3.0",
118
- "replace-in-file": "^3.4.2",
119
- "rimraf": "^2.6.2",
120
- "rollup": "^2.79.1",
121
- "rollup-plugin-cleanup": "^3.2.1",
122
- "rollup-plugin-commonjs": "^10.1.0",
123
- "rollup-plugin-json": "^4.0.0",
124
- "rollup-plugin-node-resolve": "^3.4.0",
125
- "rollup-plugin-sourcemaps": "^0.4.2",
126
- "rollup-plugin-terser": "^7.0.2",
127
- "rollup-plugin-typescript2": "^0.34.1",
128
- "semantic-release": "^15.9.16",
129
- "shelljs": "^0.8.5",
130
- "travis-deploy-once": "^5.0.9",
131
- "ts-jest": "^23.10.2",
132
- "ts-node": "^10.9.1",
133
- "tslint": "^5.11.0",
134
- "tslint-config-prettier": "^1.15.0",
135
- "tslint-config-standard": "^8.0.1",
136
- "typedoc": "^0.23.15",
137
- "typescript": "^4.8.4"
138
- },
139
- "dependencies": {
140
- "@pansy/watermark": "^2.1.0",
141
- "@types/file-saver": "^2.0.4",
142
- "@types/moment": "^2.13.0",
143
- "axios": "^0.24.0",
144
- "core-js": "^2.6.12",
145
- "crypto-js": "^4.1.1",
146
- "dom-to-image": "^2.6.0",
147
- "esprima": "^4.0.1",
148
- "estraverse": "^5.3.0",
149
- "file-saver": "^2.0.5",
150
- "gsap": "^3.11.3",
151
- "immer": "^10.0.2",
152
- "indexdb-store": "^1.0.1",
153
- "jsdoc": "^3.6.11",
154
- "jsencrypt": "^3.2.1",
155
- "lodash": "^4.17.21",
156
- "mitt": "^3.0.0",
157
- "moment": "^2.29.4",
158
- "patch-package": "^6.5.0",
159
- "rollup-plugin-node-builtins": "^2.1.2",
160
- "rollup-plugin-node-globals": "^1.4.0",
161
- "tslib": "^2.4.0"
162
- }
163
- }
1
+ {
2
+ "name": "go-core",
3
+ "version": "0.1.921-beta.2",
4
+ "description": "ANOV-GO配置平台核心库",
5
+ "keywords": [
6
+ "anov",
7
+ "anov-go",
8
+ "core"
9
+ ],
10
+ "main": "dist/code.umd.js",
11
+ "module": "dist/code.es5.js",
12
+ "typings": "dist/types/code.d.ts",
13
+ "files": [
14
+ "dist/code.umd.js",
15
+ "dist/code.es5.js"
16
+ ],
17
+ "author": "ws",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://gitee.com/wangdashuai/go-core.git"
21
+ },
22
+ "license": "MIT",
23
+ "engines": {
24
+ "node": ">=6.0.0"
25
+ },
26
+ "scripts": {
27
+ "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
28
+ "clearyarn": "rimraf dist",
29
+ "build": "tsc --module commonjs && rollup -c rollup.config.js && typedoc --out docs --target es6 --theme minimal --mode file src",
30
+ "start": "rollup -c rollup.config.ts -w",
31
+ "test": "jest --coverage",
32
+ "test:watch": "jest --coverage --watch",
33
+ "test:prod": "npm run lint && npm run test -- --no-cache",
34
+ "deploy-docs": "ts-node tools/gh-pages-publish",
35
+ "report-coverage": "cat ./coverage/lcov.info | coveralls",
36
+ "commit": "git-cz",
37
+ "semantic-release": "semantic-release",
38
+ "semantic-release-prepare": "ts-node tools/semantic-release-prepare",
39
+ "precommit": "lint-staged",
40
+ "travis-deploy-once": "travis-deploy-once",
41
+ "prepush": "npm run test:prod && npm run build",
42
+ "commitmsg": "commitlint -E HUSKY_GIT_PARAMS",
43
+ "postinstall": "patch-package"
44
+ },
45
+ "lint-staged": {
46
+ "{src,test}/**/*.ts": [
47
+ "prettier --write",
48
+ "git add"
49
+ ]
50
+ },
51
+ "config": {
52
+ "commitizen": {
53
+ "path": "node_modules/cz-conventional-changelog"
54
+ }
55
+ },
56
+ "publishConfig": {
57
+ "access": "public",
58
+ "registry": "https://registry.npmjs.org/"
59
+ },
60
+ "jest": {
61
+ "transform": {
62
+ ".(ts|tsx)": "ts-jest"
63
+ },
64
+ "testEnvironment": "node",
65
+ "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
66
+ "moduleFileExtensions": [
67
+ "ts",
68
+ "tsx",
69
+ "js"
70
+ ],
71
+ "coveragePathIgnorePatterns": [
72
+ "/node_modules/",
73
+ "/test/"
74
+ ],
75
+ "coverageThreshold": {
76
+ "global": {
77
+ "branches": 90,
78
+ "functions": 95,
79
+ "lines": 95,
80
+ "statements": 95
81
+ }
82
+ },
83
+ "collectCoverageFrom": [
84
+ "src/*.{jsx}"
85
+ ]
86
+ },
87
+ "prettier": {
88
+ "semi": false,
89
+ "singleQuote": true
90
+ },
91
+ "commitlint": {
92
+ "extends": [
93
+ "@commitlint/config-conventional"
94
+ ]
95
+ },
96
+ "devDependencies": {
97
+ "@commitlint/cli": "^7.1.2",
98
+ "@commitlint/config-conventional": "^7.1.2",
99
+ "@types/crypto-js": "^4.1.1",
100
+ "@types/dom-to-image": "^2.6.4",
101
+ "@types/esprima": "^4.0.3",
102
+ "@types/estraverse": "^5.1.2",
103
+ "@types/jest": "^23.3.2",
104
+ "@types/lodash": "^4.14.186",
105
+ "@types/node": "^10.11.0",
106
+ "@wdslib/go-utils": "0.2.7",
107
+ "colors": "^1.3.2",
108
+ "commitizen": "^3.0.0",
109
+ "coveralls": "^3.0.2",
110
+ "cross-env": "^5.2.0",
111
+ "cz-conventional-changelog": "^2.1.0",
112
+ "jest": "^23.6.0",
113
+ "jest-config": "^23.6.0",
114
+ "lint-staged": "^8.0.0",
115
+ "lodash.camelcase": "^4.3.0",
116
+ "prettier": "^1.14.3",
117
+ "prompt": "^1.3.0",
118
+ "replace-in-file": "^3.4.2",
119
+ "rimraf": "^2.6.2",
120
+ "rollup": "^2.79.1",
121
+ "rollup-plugin-cleanup": "^3.2.1",
122
+ "rollup-plugin-commonjs": "^10.1.0",
123
+ "rollup-plugin-json": "^4.0.0",
124
+ "rollup-plugin-node-resolve": "^3.4.0",
125
+ "rollup-plugin-sourcemaps": "^0.4.2",
126
+ "rollup-plugin-terser": "^7.0.2",
127
+ "rollup-plugin-typescript2": "^0.34.1",
128
+ "semantic-release": "^15.9.16",
129
+ "shelljs": "^0.8.5",
130
+ "travis-deploy-once": "^5.0.9",
131
+ "ts-jest": "^23.10.2",
132
+ "ts-node": "^10.9.1",
133
+ "tslint": "^5.11.0",
134
+ "tslint-config-prettier": "^1.15.0",
135
+ "tslint-config-standard": "^8.0.1",
136
+ "typedoc": "^0.23.15",
137
+ "typescript": "^4.8.4"
138
+ },
139
+ "dependencies": {
140
+ "@pansy/watermark": "^2.1.0",
141
+ "@rollup/plugin-terser": "^0.4.4",
142
+ "@types/file-saver": "^2.0.4",
143
+ "@types/moment": "^2.13.0",
144
+ "axios": "^0.24.0",
145
+ "core-js": "^2.6.12",
146
+ "crypto-js": "^4.1.1",
147
+ "dom-to-image": "^2.6.0",
148
+ "esprima": "^4.0.1",
149
+ "estraverse": "^5.3.0",
150
+ "file-saver": "^2.0.5",
151
+ "gsap": "^3.11.3",
152
+ "immer": "^10.0.2",
153
+ "indexdb-store": "^1.0.1",
154
+ "jsdoc": "^3.6.11",
155
+ "jsencrypt": "^3.2.1",
156
+ "lodash": "^4.17.21",
157
+ "mitt": "^3.0.0",
158
+ "moment": "^2.29.4",
159
+ "patch-package": "^6.5.0",
160
+ "rollup-plugin-node-builtins": "^2.1.2",
161
+ "rollup-plugin-node-globals": "^1.4.0",
162
+ "tslib": "^2.4.0"
163
+ }
164
+ }