-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
{
"name": "san-test-utils",
"version": "0.2.7",
"description": "Utilities for testing San Components.",
"main": "dist/san-test-utils.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/**/*.d.ts"
],
"scripts": {
"dev": "rollup -c -w",
"prepublishOnly": "npm test && npm run build",
"build": "rollup -c",
"test": "jest ./test/specs/",
"release": "sh scripts/release.sh",
"doc:dev": "sdoc start docs/zh-cn",
"doc:release": "sdoc build docs/zh-cn"
},
"repository": {
"type": "git",
"url": "https://github.com/ecomfe/san-test-utils.git"
},
"author": "mayihui",
"license": "MIT",
"peerDependencies": {
"cheerio": "1.0.0-rc.3",
"san": "^3.11.1",
"san-ssr": "^5.4.0"
},
"dependencies": {
"@types/cheerio": "^0.22.30",
"dom-event-types": "^1.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.15.0",
"@ecomfe/eslint-config": "^7.3.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@sdoc/cli": "^1.0.9",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.176",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"cheerio": "1.0.0-rc.3",
"eslint": "^8.1.0",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"jest": "^27.3.1",
"rollup": "^2.58.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript2": "^0.31.2",
"san": "^3.11.1",
"san-ssr": "^5.4.0",
"sinon": "^8.0.1",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^3.9.10",
"webpack": "^4.41.4"
}
}