-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
34 lines (34 loc) · 925 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
{
"name": "dinoql",
"version": "0.6.1",
"description": "A query language for JavaScript Objects using GraphQL syntax.",
"main": "dist/dinoql.min.js",
"scripts": {
"test": "jest",
"dev": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victorvoid/dinoql.git"
},
"author": "Victor Igor<[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/victorvoid/dinoql/issues"
},
"homepage": "https://github.com/victorvoid/dinoql#readme",
"dependencies": {
"graphql": "^14.2.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-loader": "^8.0.5",
"jest": "^24.7.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2"
}
}