This repository was archived by the owner on Dec 19, 2023. It is now read-only.
forked from relztic/restql
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.1 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.1 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "restql",
"version": "1.1.6",
"description": "RESTful API Resolver for Nested-Linked Resources | 🕸 🕷",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"files": [
"dist/"
],
"scripts": {
"prepare": "npm run clean && npm run lint && npm run test && npm run build",
"clean": "rimraf ./coverage/ ./dist/ ./stats.html",
"lint": "npm run lint:es && npm run lint:markdown",
"lint:es": "eslint ./src/",
"lint:es:fix": "npm run lint:es -- --fix",
"lint:markdown": "markdownlint $(find . -type f -name \"*.md\" -not \\( -path \"./.github/*\" -o -path \"./node_modules/*\" \\))",
"test": "npm run test:code:coverage",
"test:code": "cross-env BABEL_ENV=test jest --config ./.jest.config.json",
"test:code:coverage": "npm run test:code -- --coverage",
"test:code:watch": "npm run test:code -- --watch",
"build": "npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:cjs": "cross-env BABEL_ENV=production NODE_ENV=development RESTQL_FMT=cjs rollup --config",
"build:es": "cross-env BABEL_ENV=production NODE_ENV=development RESTQL_FMT=es rollup --config",
"build:umd": "cross-env BABEL_ENV=production NODE_ENV=development RESTQL_FMT=umd rollup --config",
"build:umd:min": "cross-env BABEL_ENV=production NODE_ENV=production RESTQL_FMT=umd rollup --config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/relztic/restql.git"
},
"keywords": [
"library",
"rest",
"api",
"resolver",
"javascript",
"node",
"npm",
"yarn"
],
"author": "Ariel de Jesús Díaz Sánchez <relztic@gmail.com> (https://www.linkedin.com/in/relztic/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/relztic/restql/issues/"
},
"homepage": "https://github.com/relztic/restql/#readme",
"dependencies": {
"axios": "^0.17.1",
"babel-runtime": "^6.26.0",
"lodash": "^4.17.4",
"md5": "^2.2.1",
"validator": "^13.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.5.0",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.1.4",
"markdownlint-cli": "^0.6.0",
"prettier": "1.10.2",
"rimraf": "^2.6.2",
"rollup": "^0.54.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-plugin-visualizer": "^0.3.1"
}
}