-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "cyclejs-gravatar",
"version": "1.0.0",
"description": "cyclejs component for rendering a gravatar profile image",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"keywords": [
"cyclejs",
"gravatar"
],
"author": "mciparelli@gmail.com",
"license": "MIT",
"dependencies": {
"@cycle/core": "6.0.0-rc2",
"@cycle/dom": "^9.0.1",
"@cycle/isolate": "^1.2.0",
"md5": "^2.0.0",
"querystring": "^0.2.0",
"rx": "^4.0.7"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"budo": "^8.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "mkdir -p dist",
"build": "npm run lint && babel src/index.js -o dist/index.js",
"lint": "eslint src/index.js",
"example": "budo example/src/main.js --live --dir example --open"
},
"browserify": {
"transform": [
"babelify"
]
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mciparelli/cyclejs-gravatar.git"
},
"bugs": {
"url": "https://github.com/mciparelli/cyclejs-gravatar/issues"
},
"homepage": "https://github.com/mciparelli/cyclejs-gravatar#readme"
}