-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "@zalando/react-automatic-width",
"version": "0.0.6",
"description": "Automatically sets width property on child components",
"main": "dist/react-automatic-width.js",
"scripts": {
"test": "BABEL_ENV=test mocha --compilers js:babel-register test/{**,.}/*.test.js",
"lint": "eslint src/react-automatic-width.jsx",
"build": "BABEL_ENV=production webpack",
"test-coverage": "BABEL_ENV=test babel-node ./node_modules/.bin/babel-istanbul cover _mocha -- --compilers js:babel-register test/{**,.}/*.test.js && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm test && npm run-script build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalando/react-automatic-width.git"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"keywords": [
"react",
"responsive",
"width",
"automatic",
"flexible"
],
"author": "Nikolaus Piccolotto <nikolaus.piccolotto@zalando.de>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zalando/react-automatic-width/issues"
},
"homepage": "https://github.com/zalando/react-automatic-width#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"chai-spies": "^0.7.1",
"coveralls": "^2.11.6",
"domino": "^1.0.21",
"eslint": "^1.7.3",
"eslint-formatter-pretty": "^1.1.0",
"eslint-loader": "^1.1.0",
"eslint-plugin-react": "^3.6.3",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"sinon": "^1.17.7",
"webpack": "^2.2.1"
}
}