-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 4.32 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "reflay",
"version": "1.0.3",
"description": "React Flexbox Layout.",
"homepage": "https://beplus.github.io/reflay",
"browser": "dist/reflay.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"start": "./node_modules/.bin/cross-env NODE_ENV=development UV_THREADPOOL_SIZE=100 node ./server",
"lint": "./node_modules/.bin/standard --verbose | snazzy",
"test:karma": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/karma start",
"test:karma:watch": "./node_modules/.bin/cross-env NODE_ENV=test ./node_modules/.bin/karma start --no-single-run",
"test:karma:coverage": "npm run test:karma -- --coverage",
"test:mocha": "./node_modules/.bin/cross-env NODE_ENV=test mocha 'tests/unit/**/*.spec.js' --compilers js:babel-core/register --recursive --require ./tests/unit/setup.js --require ./tests/unit/init.js",
"test:mocha:watch": "npm run test:mocha -- --watch",
"test:unit:nocoverage": "npm run test:karma && npm run test:mocha",
"test:unit": "npm run test:karma:coverage && npm run test:mocha",
"test:e2e": "./node_modules/.bin/protractor protractor.config.js",
"test": "npm run lint && npm run test:unit && npm run test:e2e",
"prebuild": "npm run clean",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min && npm run build:css && npm run build:css:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --copy-files",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --copy-files",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/reflay.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/reflay.min.js",
"build:css": "node-sass src/styles/layout.scss dist/layout.css",
"build:css:min": "node-sass src/styles/layout.scss dist/layout.min.css --output-style compressed",
"serve:travis": "./node_modules/.bin/cross-env NODE_ENV=test UV_THREADPOOL_SIZE=100 node ./server",
"clean": "./node_modules/.bin/rimraf ./lib ./dist ./es ./coverage",
"webdriver-manager-update": "./node_modules/.bin/webdriver-manager update"
},
"pre-commit": [
"lint",
"test:unit:nocoverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beplus/reflay.git"
},
"keywords": [
"react",
"flexbox",
"layout",
"grid"
],
"author": "BePlus s.r.o. <hello@be.plus> (https://be.plus)",
"license": "MIT",
"bugs": {
"url": "https://github.com/beplus/reflay/issues"
},
"devDependencies": {
"autoprefixer": "6.5.3",
"babel-cli": "6.18.0",
"babel-core": "6.18.2",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.8",
"babel-plugin-__coverage__": "11.0.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-preset-stage-2": "6.18.0",
"cross-env": "3.1.3",
"css-loader": "0.26.1",
"expect": "1.20.2",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"isparta": "4.0.0",
"jasmine-spec-reporter": "2.7.0",
"jsdom": "9.8.3",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "1.1.1",
"karma-coveralls": "1.1.2",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.1",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon": "1.0.5",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"minimist": "1.2.0",
"mocha": "3.2.0",
"node-sass": "3.13.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "2.1.13",
"pre-commit": "1.1.3",
"protractor": "4.0.11",
"react": "15.4.1",
"react-addons-test-utils": "15.4.1",
"react-dom": "15.4.1",
"react-hot-loader": "3.0.0-beta.6",
"rimraf": "2.5.4",
"sass-loader": "4.0.2",
"sinon": "1.17.6",
"snazzy": "5.0.0",
"standard": "8.6.0",
"style-loader": "0.13.1",
"webpack": "1.13.3",
"webpack-dev-middleware": "1.8.4",
"webpack-hot-middleware": "2.13.2"
},
"peerDependencies": {
"babel-polyfill": ">=6.0.0",
"react": "^0.14.3 || ^15.0.0"
},
"dependencies": {
"classnames": "2.2.5"
}
}