-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 861 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 861 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
{
"name": "js-query-builder",
"version": "0.2.0",
"description": "An easy way to build a query string compatible with \"spatie/laravel-query-builder\".",
"main": "dist/index.js",
"files": [
"/src",
"/dist"
],
"scripts": {
"build": "rm -rf dist/* && babel src -d dist",
"prepare": "jest && npm run format && npm run build",
"test": "jest --watchAll --coverage",
"format": "prettier --write \"**/*.{css,js,vue}\""
},
"keywords": [
"js",
"query",
"builder",
"laravel",
"spatie",
"build"
],
"author": "Ilya Sakovich",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"@types/jest": "^24.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"jest": "^24.1.0",
"prettier": "^1.16.4"
}
}