forked from leiyu-97/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "utils",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"doc": "typedoc",
"build": "bin/build",
"test:node": "jest --config ./jest.config.ts",
"test:browser": "node script/test/browserTest.js",
"test": "npm run test:node && npm run test:browser",
"debug:node": "node --inspect-brk ./node_modules/.bin/jest --config ./jest.config.ts",
"debug:browser": "node script/test/browserDebug.js",
"cover:node": "jest --config ./jest.config.ts --coverage",
"cover:browser": "nyc --silent --no-clean npm run test:browser",
"cover:report": "nyc report --reporter=html --reporter=text --temp-dir .nyc_output",
"cover:clean": "nyc --clean echo",
"cover": "npm run cover:clean && npm run cover:node && npm run cover:browser && npm run cover:report",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.1",
"@babel/generator": "^7.11.6",
"@babel/helper-plugin-utils": "^7.10.4",
"@babel/parser": "^7.10.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@babel/traverse": "^7.10.1",
"@babel/types": "^7.11.5",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.11.5",
"@types/power-assert": "^1.5.3",
"@types/react": "^16.9.51",
"@types/sinon": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@vue/component-compiler-utils": "^3.2.0",
"@vue/test-utils": "^1.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-plugin-espower": "^3.0.1",
"babel-preset-power-assert": "^3.0.0",
"commander": "^6.1.0",
"coveralls": "^3.0.13",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.4",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-vue": "^7.1.0",
"jest": "^26.6.3",
"jest-sinon": "^1.0.4",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"koa": "^2.13.0",
"koa-static": "^5.0.0",
"mocha": "^7.2.0",
"nyc": "^15.0.1",
"power-assert": "^1.6.1",
"puppeteer": "^4.0.0",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.17.0",
"rollup-plugin-istanbul2": "^2.0.2",
"sinon": "^9.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typedoc-neo-theme": "^1.0.10",
"typedoc-plugin-external-module-name": "^4.0.3",
"typescript": "^4.0.5",
"uuid": "^8.3.0",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.12"
},
"dependencies": {
"duplexer3": "^0.1.4",
"html2json": "^1.0.2",
"react": "^16.13.1",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.0.2"
}
}