forked from nkt/react-flexgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.66 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
{
"name": "react-flexgrid",
"version": "0.7.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": {
"react": ">=0.12.0",
"babel-runtime": ">=5.1.11",
"classnames": ">=2.1.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^13.2.2",
"babel-runtime": ">=5.1.11",
"eslint": "^3.1.1",
"eslint-plugin-react": "^5.2.2",
"jest-cli": "^13.2.3",
"less": "^2.5.1",
"less-plugin-autoprefix": "^1.4.2",
"react": ">=0.12.0"
},
"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": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"jsx",
"js"
],
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/babel",
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/classnames"
]
}
}