This repository was archived by the owner on Apr 7, 2024. It is now read-only.
forked from wwwsevolod/react-easy-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.62 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.62 KB
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
74
{
"name": "react-easy-layout-lib",
"version": "0.15.9",
"description": "Advanced react layout library that easy to use",
"main": "lib/index.js",
"scripts": {
"clean": "$(npm bin)/rimraf lib && $(npm bin)/rimraf coverage && mkdir lib && mkdir lib/dom",
"test": "NODE_PATH=./src NODE_ENV=test $(npm bin)/_mocha --compilers js:babel-register --require ./testHelper.js --recursive test/**/*.unit.js",
"test:cov": "NODE_PATH=./src NODE_ENV=test $(npm bin)/babel-node ./node_modules/isparta/bin/isparta cover --include-all-sources --report text node_modules/mocha/bin/_mocha -- --require ./testHelper.js --recursive test/**/*.unit.js",
"test:watch": "npm run test -- --watch",
"lint": "$(npm bin)/eslint ./",
"compile:js": "$(npm bin)/babel src --out-dir lib",
"compile:css": "./node_modules/.bin/postcss --use autoprefixer --autoprefixer.browsers \"last 2 versions, ie >= 10\" ./src/dom/easy-layout.css -d lib/dom/",
"compile": "npm run clean && npm run compile:js && npm run compile:css",
"build:dev": "NODE_ENV=development npm run compile",
"build:prod": "NODE_ENV=production npm run compile",
"ci": "npm run clean && npm run lint && npm run test:cov && npm run build:prod"
},
"keywords": [
"react",
"flex",
"flexbox",
"autolayout",
"layout",
"grid",
"react-grid",
"components",
"reactjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/WinnerSoftLab/react-easy-layout-lib.git"
},
"author": "Clickadu",
"license": "MIT",
"bugs": {
"url": "https://github.com/WinnerSoftLab/react-easy-layout-lib/issues"
},
"homepage": "https://github.com/WinnerSoftLab/react-easy-layout-lib",
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-plugin-transform-class-properties": "^6.4.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"chai": "^3.4.1",
"chai-enzyme": "^0.4.2",
"cheerio": "^0.20.0",
"css-loader": "^0.23.1",
"enzyme": "^2.2.0",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.15.0",
"isparta": "^4.0.0",
"jsdom": "^8.3.0",
"mocha": "^2.3.4",
"postcss-cli": "^2.4.0",
"prop-types": "^15.8.1",
"react": "^15.0.1",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.5.0",
"webpack": "^1.12.12"
},
"dependencies": {
"b_": "^1.3.3"
}
}