-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.25 KB
/
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": "querykit",
"version": "0.5.0",
"description": "Query functions for your synchronous and asynchronous data.",
"main": "dist/node/querykit.js",
"scripts": {
"build": "npm i && \"./node_modules/.bin/babel\" src -d dist/node",
"test": "npm i && \"node_modules/.bin/babel-istanbul\" cover node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meandmycode/querykit.git"
},
"keywords": [
"query",
"iterate"
],
"author": "meandmycode",
"license": "MIT",
"bugs": {
"url": "https://github.com/meandmycode/querykit/issues"
},
"homepage": "https://github.com/meandmycode/querykit#readme",
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-istanbul": "^0.8.0",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-syntax-async-generators": "^6.8.0",
"babel-plugin-syntax-export-extensions": "^6.8.0",
"babel-plugin-syntax-function-bind": "^6.8.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"jasmine": "^2.4.1"
}
}