-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1 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
{
"name": "paginated-graphql",
"version": "1.1.3",
"main": "lib/index.js",
"repository": "http://github.com/orionsoft/paginated-graphql",
"author": "nicolaslopezj",
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"prepublish": "yarn run build",
"test": "yarn run lint && jest",
"watch": "node watch.js",
"test-watch": "jest --watch",
"lint": "standard \"src/**/*.js\""
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-eslint": "^7.0.0",
"babel-jest": "^15.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-2": "^6.5.0",
"colors": "^1.1.2",
"eslint": ">=3.0.0",
"jest-cli": "^15.1.1",
"standard": "*"
},
"dependencies": {
"graphql-loader": "^1.2.0",
"lodash": "^4.17.3",
"object-hash": "^1.1.5"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
}
}