-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
73 lines (73 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
69
70
71
72
73
{
"name": "react-flexgrid",
"version": "1.0.0",
"description": "Flexbox grid for react apps",
"keywords": [
"browser",
"react",
"react-component",
"flexbox",
"grid",
"css",
"flexboxgrid"
],
"author": "Nikita Gusakov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nkt/react-flexgrid.git"
},
"homepage": "https://github.com/nkt/react-flexgrid",
"bugs": {
"url": "https://github.com/nkt/react-flexgrid/issues"
},
"main": "lib/index.js",
"peerDependencies": {
"classnames": ">=2.1.2",
"prop-types": "^15.5.8",
"react": ">=0.14.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": ">=2.1.2",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"less": "^2.5.1",
"less-plugin-autoprefix": "^1.4.2",
"prop-types": "^15.5.8",
"react": ">=0.14.0",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4"
},
"scripts": {
"pretest": "eslint src/",
"test": "jest src/",
"prepublish": "npm run build",
"prebuild": "rm -rf lib",
"build": "npm run build-js && npm run build-css",
"build-js": "babel -d lib/ src/",
"build-css": "lessc less/flexgrid.less --autoprefix > lib/flexgrid.css"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"jsx",
"js",
"json"
]
}
}