-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "relax-fragments",
"version": "0.1.4",
"description": "Relax Fragments API to use on React components and GraphQL queries",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && webpack",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-register --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relax/fragments.git"
},
"keywords": [
"react",
"relax",
"fragments",
"graphql",
"queries",
"components"
],
"author": "José Magalhães <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/relax/fragments/issues"
},
"homepage": "https://github.com/relax/fragments#readme",
"dependencies": {
"lodash.foreach": "^3.0.3",
"lodash.merge": "^3.3.2"
},
"devDependencies": {
"babel-core": "^6.6.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.6.0",
"eslint": "2.4.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.1.0",
"expect": "^1.14.0",
"mocha": "^2.4.5",
"webpack": "^1.12.14"
}
}