forked from nicolaslopezj/graphql-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 978 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 978 Bytes
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
{
"name": "@appigram/graphql-loader",
"version": "1.2.24",
"main": "lib/index.js",
"repository": "http://github.com/appigram/graphql-loader",
"author": "Eugene Sysmanov <appigram@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel ./src --out-dir ./lib",
"prepare": "npm run build",
"test": "npm run lint && jest",
"watch": "watch npm\\ run\\ build ./src",
"test-watch": "jest --watch",
"lint": "standard \"src/**/*.js\"",
"lint-fix": "standard --fix \"src/**/*.js\""
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.2",
"jest-cli": "^30.2.0",
"standard": "*"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"lodash.keys": "^4.2.0",
"lodash.union": "^4.6.0"
}
}