forked from mzabriskie/react-flipcard
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
92 lines (92 loc) · 2.64 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
{
"name": "react-flipcard-2",
"version": "0.3.0",
"description": "React Flip Card - Revamped to work with React 16+",
"main": "dist/react-flipcard-2.js",
"scripts": {
"test-disabled":
"cross-env NODE_ENV=test nyc mocha --recursive --require ./test/setup.js ./test/tests/*.js",
"compile": "projectz compile",
"posttest": "npm run compile",
"prepublish": "npm run build:prod",
"build:prod":
"cross-env NODE_ENV=production BABEL_ENV=production babel-node config/scripts/build",
"build": "rimraf dist && babel-node config/scripts/build",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/Dash-OS/react-flipcard-2.git"
},
"keywords": ["react-component", "flip-card", "flip"],
"author": "Matt Zabriskie, Braden R. Napier",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dash-OS/react-flipcard-2/issues"
},
"homepage": "https://github.com/Dash-OS/react-flipcard-2",
"devDependencies": {
"app-root-dir": "^1.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^4.7.2",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-babel": "^4.1.2",
"projectz": "^1.4.0",
"rackt-cli": "^0.5.3",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^0.15.0 || ^0.16.0",
"react-dom": "^0.14.0 || ^0.15.0 || ^0.16.0"
},
"dependencies": {
"classnames": "^2.2.0",
"prop-types": "^15.6.0"
},
"badges": {
"list": [
"npmversion",
"npmdownloads",
"daviddm",
"travisci",
"coveralls",
"paypal",
"githubfollow",
"hackernewssubmit",
"redditsubmit",
"twittertweet",
"githubstar"
],
"config": {
"paypalURL": "https://paypal.me/bradynapier",
"githubUsername": "bradennapier",
"githubSlug": "react-flipcard-2"
}
},
"nyc": {
"check-coverage": true,
"produce-source-map": true,
"reporter": ["lcov", "text"],
"require": ["babel-register"],
"sourceMap": false,
"instrument": false
},
"maintainers": [],
"contributors": [
"Braden Napier (https://github.com/bradennapier)",
"Matt Zabriskie (https://github.com/mzabriskie)"
]
}