-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 1.6 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
{
"name": "YX-JS-ToolKit",
"version": "1.0.0",
"discription": "YX-JS-ToolKit is a toolkit for js common functions.",
"main": "pages/index.html",
"scripts": {
"git-push": "cd ../yx-env && git-push.sh YX-JS-ToolKit",
"jest:app": "jest test/app --coverage --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gyx8899/YX-JS-ToolKit.git"
},
"keywords": [
"Javascript",
"Web",
"Sample",
"Component",
"Util"
],
"Author": "Steper Kuo",
"license": "ISC",
"bugs": {
"url": "https://github.com/gyx8899/YX-JS-ToolKit/issues"
},
"homepage": "https://github.com/gyx8899/YX-JS-ToolKit#readme",
"babel": {
"presets": [
[
"env",
"es2015",
{
"modules": false
}
]
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"jest": {
"//": "Comment: Below are optional for jest config",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/"
],
"coverageReporters": [
"json",
"html",
"text",
"json-summary"
]
},
"devDependencies": {
"@daybyday/yx-js": "^0.1.1",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^24.8.0",
"mock-local-storage": "^1.1.8",
"ts-jest": "^24.0.2"
},
"dependencies": {
"create-next-app-cli": "^0.1.0",
"jquery": "^3.4.1"
}
}