-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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-blades",
"version": "0.0.34",
"description": "Horizontal stacking window panels.",
"main": "index.js",
"scripts": {
"build": "yarn run clean && yarn run build:js && yarn run build:components",
"build:js": "babel src/js -d dist/ --ignore src/js/components",
"build:components": "webpack",
"clean": "rimraf dist",
"lint": "eslint --ext .js,.jsx src/js",
"publish-patch": "npm version patch",
"publish-minor": "npm version minor",
"publish-major": "npm version major",
"pretest": "npm run --silent lint",
"tests-watch": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/ericontilt/react-blades.git"
},
"keywords": [
"react",
"react-blades",
"blades",
"blade"
],
"author": "Eric Beragg",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericontilt/react-blades/issues"
},
"homepage": "https://github.com/ericontilt/react-blades#readme",
"devDependencies": {
"airbnb-js-shims": "^1.0.1",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "6.4.1",
"babel-preset-airbnb": "^2.0.0",
"babel-register": "^6.24.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jasmine-core": "^2.6.4",
"jest": "^20.0.4",
"json-loader": "^0.5.4",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.5.4",
"source-map-loader": "^0.2.1",
"webpack": "^2.6.1"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash.merge": "^4.6.0"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": ">=0.14",
"react-dom": ">=0.14"
}
}