-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "react-free-transform",
"description": "A free transform tool",
"author": "Solaiman Kmail <[email protected]> (https://github.com/skmail)",
"license": "MIT",
"version": "1.0.9",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/skmail/react-free-transform"
},
"keywords": [
"react",
"reactjs",
"free-transform",
"resize",
"draggable"
],
"bugs": {
"url": "https://github.com/skmail/react-free-transform/issues"
},
"scripts": {
"build:lib": "babel src --out-dir lib --watch --ignore __tests__ ",
"test": "jest --verbose",
"test:watch": "npm run test --runInBand --colors --env=jsdom",
"test:cov": "npm run test -- --coverage ",
"test:flow": "flow check",
"lint": "eslint src",
"coverage": "codecov"
},
"dependencies": {
"free-transform": "^0.1.1",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"codecov": "^3.0.4",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.3.1",
"eslint": "^5.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.4.2"
},
"jest": {
"testEnvironment": "jsdom",
"testURL": "http://localhost/",
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageReporters": [
"text",
"lcov",
"html"
],
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testRegex": "__tests__/.*\\.test\\.js$"
}
}