This repository was archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.59 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
75
76
77
78
79
80
81
82
83
84
{
"name": "react-bem-grid",
"version": "0.0.14",
"description": "A BEM-ified port of Flexbox Grid to a simple, reusable React component.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm-run-all transpile styles build:umd",
"build:umd": "webpack --config ./webpack.config src/index.js dist/react-bem-grid.js && NODE_ENV=production webpack --config ./webpack.config src/index.js dist/react-bem-grid.min.js",
"transpile": "babel src --out-dir dist",
"sass": "node-sass src -o dist --output-style expanded --precision 3",
"autoprefixer": "postcss -u autoprefixer -o dist/Grid.css dist/Grid.css",
"styles": "npm-run-all sass autoprefixer",
"coverage": "isparta cover _mocha",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"eslint": "eslint --ext=.jsx --ext=.js src test",
"jscs": "jscs src test",
"lint": "npm-run-all jscs eslint",
"test": "mocha",
"tdd": "npm test -- --watch",
"validate": "npm-run-all test",
"prepush": "npm run validate",
"prepublish": "npm run build",
"postpublish": "rimraf dist && git push --follow-tags"
},
"repository": {
"type": "git",
"url": "https://github.com/nordnet/react-bem-grid"
},
"keywords": [
"nordnet",
"react",
"bem",
"flexbox",
"grid"
],
"author": "Gustaf Zetterlund <gustaf.zetterlund@nordnet.se>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nordnet/react-bem-grid/issues"
},
"homepage": "https://github.com/nordnet/react-bem-grid#readme",
"dependencies": {
"classnames": "^2.2.0",
"lodash.isnumber": "^3.0.1",
"prop-types": "^15.5.10",
"react-prop-types": "^0.3.0",
"react-pure-render": "^1.0.2"
},
"devDependencies": {
"autoprefixer": "^5.2.0",
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^4.1.7",
"babel-jscs": "^2.0.3",
"babel-loader": "^5.3.2",
"chai": "^3.0.0",
"coveralls": "^2.11.3",
"eslint": "^1.4.3",
"eslint-config-airbnb": "^0.0.7",
"eslint-config-nordnet": "0.0.3",
"eslint-plugin-react": "^3.1.0",
"husky": "^0.8.1",
"isparta": "^3.0.3",
"jscs": "^2.0.0",
"jscs-jsdoc": "^1.1.0",
"mocha": "^2.2.5",
"node-sass": "^3.2.0",
"npm-run-all": "^1.2.6",
"postcss-cli": "^1.5.0",
"react": "^15.5",
"react-addons-test-utils": "^15.5",
"react-dom": "^15.5",
"rimraf": "^2.3.4",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14 || ^15.5",
"react-dom": "^0.14 || ^15.5"
}
}