-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
38 lines (38 loc) · 987 Bytes
/
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
{
"name": "graphql-loader",
"version": "1.2.1",
"main": "lib/index.js",
"repository": "http://github.com/orionsoft/graphql-loader",
"author": "nicolaslopezj",
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"prepublish": "npm run build",
"test": "npm run lint && jest",
"watch": "watch npm\\ run\\ build ./src",
"test-watch": "jest --watch",
"lint": "standard \"src/**/*.js\""
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
},
"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",
"eslint": ">=3.0.0",
"jest-cli": "^15.1.1",
"standard": "*"
},
"dependencies": {
"autobind-decorator": "^1.3.4",
"lodash": "^4.17.3"
}
}