-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "dumb-bem",
"description": "Simple BEM react components generator",
"version": "3.2.0",
"keywords": [
"react",
"bem"
],
"repository": {
"type": "git",
"url": "git+https://github.com/agudulin/dumb-bem.git"
},
"bugs": {
"url": "https://github.com/agudulin/dumb-bem/issues"
},
"homepage": "https://github.com/agudulin/dumb-bem#readme",
"dependencies": {
"classnames": "^2.2.3"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.5.1",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"expect": "^1.14.0",
"expect-jsx": "^2.3.0",
"jsdoc-to-markdown": "^1.3.3",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"rimraf": "^2.5.2",
"standard": "^7.1.2",
"transform-props-with": "^2.0.0"
},
"peerDependencies": {
"transform-props-with": "^2.0.0"
},
"main": "lib/",
"scripts": {
"docs": "jsdoc2md --module-index-format grouped src/plugins/*.js > docs/plugins.md",
"transpile": "babel src -d lib",
"pretest": "npm run transpile",
"test": "standard && ava -v",
"prepush": "npm test && npm run docs",
"prepublish": "npm run transpile",
"postpublish": "rimraf index.es5.js"
},
"author": "Alexander Gudulin <alexandr.gudulin@gmail.com> (http://gudulin.com)",
"contributors": [
"Robin Pokorny <me@robinpokorny.com> (http://robinpokorny.com)",
"Rafal Bromirski <rafal.bromirski@gmail.com> (http://www.rafalbromirski.com)"
],
"license": "MIT"
}