-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
76 lines (76 loc) · 1.98 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
75
76
{
"name": "react-displace",
"version": "2.3.0",
"description": "A higher order component that displaces your component into a remote region of the DOM",
"main": "dist/displace.js",
"scripts": {
"demo-bundle": "browserify demo/js -t babelify -o demo/demo-bundle.js",
"demo-watch": "watchify demo/js -v -d -t babelify -o demo/demo-bundle.js",
"predemo-dev": "npm run build",
"start": "npm run demo-watch & http-server demo",
"lint": "eslint .",
"format": "prettier --write src/*.js test/*.js demo/js/*.js",
"pretest": "npm run lint",
"jest": "jest",
"test": "jest",
"build": "babel src -d dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidtheclark/react-displace.git"
},
"keywords": [
"react",
"react-component"
],
"author": "David Clark",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidtheclark/react-displace/issues"
},
"homepage": "https://github.com/davidtheclark/react-displace#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"eslint": "^4.8.0",
"eslint-plugin-react": "^7.4.0",
"http-server": "0.10.0",
"jest": "^21.2.1",
"prettier": "^1.2.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"tape": "^4.6.3",
"watchify": "^3.9.0"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0 || ^16.0.0",
"react-dom": "0.14.x || ^15.0.0 || ^16.0.0"
},
"prettier": {
"singleQuote": true
},
"babel": {
"presets": [
"react",
"env"
],
"plugins": [
"transform-class-properties"
]
},
"jest": {
"clearMocks": true,
"testMatch": [
"<rootDir>/test/*.test.js"
],
"setupFiles": [
"<rootDir>/test/jest-setup.js"
]
}
}