-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "kenote-react-component",
"version": "1.0.0",
"description": "react component for kenote",
"main": "lib/index.js",
"repository": "https://github.com/thondery/kenote-react-component.git",
"author": "thondery <thondery@163.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"codecov": "^3.0.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-test-renderer": "^16.0.0"
},
"peerDependencies": {
"react": ">=15.6.0"
},
"scripts": {
"build": "babel src -d lib",
"test": "jest --u --colors",
"codecov": "jest --u --colors --coverage && codecov"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
".*\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/example/"
]
}
}