-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "react-layers",
"version": "0.3.1",
"description": "A library for layering components in React",
"keywords": [
"react",
"react-component",
"layers",
"layering",
"overlay"
],
"main": "index.js",
"scripts": {
"test": "jest",
"build-examples": "webpack --devtool inline-source-map",
"watch-examples": "webpack --devtool inline-source-map --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/pieterv/react-layers.git"
},
"homepage": "https://github.com/pieterv/react-layers",
"bugs": "https://github.com/pieterv/react-layers/issues",
"author": "Pieter Vanderwerff",
"license": "MIT",
"devDependencies": {
"jest-cli": "^0.1.18",
"jsx-loader": "^0.11.0",
"react-tools": "^0.11.1",
"webpack": "^1.3.7",
"react": ">=0.11.0"
},
"peerDependencies": {
"react": ">=0.11.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}