-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "react-mailto",
"description": "A react component to create and display a mailto link.",
"version": "0.4.0",
"homepage": "https://github.com/jasonbellamy/react-mailto",
"author": {
"name": "Jason Bellamy",
"email": "[email protected]",
"url": "http://jasonbellamy.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonbellamy/react-mailto.git"
},
"bugs": {
"url": "https://github.com/jasonbellamy/react-mailto/issues"
},
"license": "MIT",
"main": "dist/react-mailto",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"build": "babel -d dist src",
"clean": "rm -rf dist && mkdir dist",
"watch": "babel -w -d dist src",
"test": "mocha --require babel-core/register",
"preversion": "npm run clean && npm run build",
"postpublish": "git push && git push --tag"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"core-js": "^0.9.6",
"mocha": "^2.3.0",
"react": "^15.2.1",
"react-addons-test-utils": "^15.2.1",
"react-shallow-output": "^0.2.0"
},
"keywords": [
"react",
"react-component",
"email",
"mailto",
"markup"
]
}