-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.74 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.74 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
85
86
87
{
"name": "react-fab",
"version": "1.2.0",
"description": "Floating Action Buttons for React",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run build:dist && npm run build:scss",
"build:scss": "gulp build:scss",
"build:dist": "babel src --ignore '*.test.js' -d dist",
"docs": "jsdoc:perFile 'src/**/*.js' -i 'src/**/*.test.js' -c jsdoc.json",
"docs:watch": "nodemon --watch src --exec 'npm run docs'",
"test": "gulp test",
"test:watch": "nodemon --watch src --exec 'npm run test'",
"lint": "gulp lint",
"prepublishOnly": "yarn run clean; yarn run test; yarn run build; yarn run docs",
"storybook": "yarn run build:scss; start-storybook -p 6006",
"build-storybook": "yarn run build:scss; build-storybook"
},
"repository": {
"url": "git+https://github.com/nerp-tech/react-fab.git",
"type": "git"
},
"keywords": [],
"author": "Ivan Montiel <idmontie@gmail.com> (https://github.com/idmontie)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nerp-tech/react-fab/issues"
},
"homepage": "https://github.com/nerp-tech/react-fab#readme",
"devDependencies": {
"@storybook/addon-actions": "^4.0.0-alpha.9",
"@storybook/addon-links": "^4.0.0-alpha.9",
"@storybook/addon-storysource": "^3.4.7",
"@storybook/addons": "^4.0.0-alpha.9",
"@storybook/react": "^4.0.0-alpha.9",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-polyfill": "^6.20.0",
"babel-preset-memosa": "^1.0.0",
"babel-runtime": "^7.0.0-beta.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"css-loader": "^0.28.11",
"enzyme": "^2.7.0",
"eslint": "^3.12.2",
"eslint-config-memosa": "^1.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-sort-class-members": "^1.1.1",
"gulp": "^3.9.1",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-mocha": "^3.0.1",
"gulp-scss-lint": "^0.4.0",
"gulp-util": "^3.0.7",
"isparta": "^4.0.0",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"jsdoc-memosa": "^1.1.0",
"jsdoc-to-markdown": "^2.0.1",
"jsdom": "^9.9.1",
"node-sass": "^4.9.0",
"nodemon": "^1.11.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"sass-loader": "^7.0.3",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"style-loader": "^0.21.0"
},
"peerDependencies": {
"react": "^15.4.1 || ^16.0.0",
"react-dom": "^15.4.1 || ^16.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.6.1"
}
}