-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.1 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
{
"name": "react-adaptive-grid",
"version": "0.4.0",
"description": "React adaptive grid",
"files": [
"dist",
"lib",
"src"
],
"main": "./lib/index.js",
"scripts": {
"build:lib": "babel src --out-dir lib",
"build:examples": "cross-env NODE_ENV=development webpack --config webpack.config.examples.js",
"build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-adaptive-grid.js",
"build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-adaptive-grid.min.js",
"build": "npm run build:lib && npm run build:examples && npm run build:umd && npm run build:umd:min && node ./prepublish",
"lint": "eslint src test",
"lint:fix": "eslint --fix src test",
"test": "BABEL_DISABLE_CACHE=1 mocha --compilers js:babel-register --recursive --require ./test/setup.js",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/babotech/react-adaptive-grid.git"
},
"keywords": [
"react",
"reactjs",
"adaptive grid",
"grid",
"windowing"
],
"author": "Galkin Rostislav <galkinrost@gmail.com> (http://github.com/galkinrost)",
"license": "MIT",
"bugs": {
"url": "https://github.com/babotech/react-adaptive-grid/issues"
},
"homepage": "https://github.com/babotech/react-adaptive-grid#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.2",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-plugin-transform-react-jsx": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"cross-env": "^1.0.7",
"es3ify": "^0.2.1",
"eslint": "2.2.0",
"eslint-config-babo": "^0.1.1",
"expect": "^1.14.0",
"expect-immutable": "0.0.2",
"expect-jsx": "^2.3.0",
"glob": "^7.0.0",
"jsdom": "^8.0.2",
"mocha": "^2.4.5",
"mockery": "^1.4.0",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-contextify": "^0.1.0",
"react-dom": "^0.14.7",
"rndoam": "^0.1.0",
"webpack": "^1.12.13"
},
"dependencies": {
"immutable": "^3.7.6"
}
}