-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "cmn-utils",
"version": "1.0.10",
"description": "common func & req",
"keywords": [
"react",
"util"
],
"files": [
"lib",
"es"
],
"main": "./lib",
"repository": "https://github.com/LANIF-UI/cmn-utils.git",
"license": "MIT",
"config": {
"port": 8000
},
"scripts": {
"start": "rc-tools run server",
"build": "rc-tools run build",
"compile": "rc-tools run compile",
"pub": "rc-tools run pub --babel-runtime",
"lint": "rc-tools run lint",
"test": "jest",
"coverage": "jest --coverage"
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"transform": {
"\\.tsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js",
"\\.jsx?$": "./node_modules/rc-tools/scripts/jestPreprocessor.js"
}
},
"pre-commit": [
"lint"
],
"devDependencies": {
"jest": "^22.0.3",
"pre-commit": "1.x",
"rc-tools": "^9.5.3",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"downloadjs": "^1.4.7",
"fetch-jsonp": "^1.1.3",
"store2": "^2.5.9",
"whatwg-fetch": "^2.0.3",
"wolfy87-eventemitter": "^5.2.4"
}
}