-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 859 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
39
40
{
"name": "graphqlite",
"version": "1.3.0",
"description": "An experimental implementation of Facebook's GraphQL",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/jest",
"build": "./node_modules/.bin/pegjs grammar.pegjs lib/parser.js"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"keywords": [
"graphql",
"react"
],
"repository": {
"type": "git",
"url": "git://github.com/madjam002/graphqlite.git"
},
"author": "Jamie Greeff <[email protected]>",
"license": "MIT",
"dependencies": {
"extend": "^2.0.1"
},
"devDependencies": {
"babel-jest": "^4.0.0",
"jest-cli": "^0.4.0",
"pegjs": "^0.8.0"
}
}