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