-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "@lugia/jverify",
"version": "1.0.10",
"description": "用于单元测试对象或方法打桩",
"scripts": {
"clean": "lugia-complie clean",
"build": "lugia-complie build",
"dist": " npm run build && npm publish ",
"dev": "lugia-complie dev --ig",
"test": "lugia-complie test --watchAll",
"cov": "lugia-complie cov"
},
"devDependencies": {
"@lugia/lugia-complie": "^1.0.6",
"chai": "^4.1.2"
},
"dependencies": {
"@lugia/type-utils": "^1.0.1",
"clone": "^2.1.1",
"deep-equal": "^1.0.1"
},
"author": "yss",
"license": "MIT",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"testMatch": [
"<rootDir>/target/test/**/*.{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
}
}