-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
41
42
43
44
45
{
"name": "bqpjs",
"version": "0.1.1",
"description": "Boolean Queary Parser JS",
"files": [
"dist/bundle.cjs.js",
"dist/bundle.esm.js"
],
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"scripts": {
"build": "rollup --config",
"build:watch": "npm run build -- --watch",
"lint": "eslint src",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test && npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags",
"test": "jest",
"test:update": "jest -u"
},
"author": "frederickf <ffeibel@gmail.com>",
"keywords": [
"Boolean",
"JavaScript",
"parse",
"search"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/frederickf/bqpjs.git"
},
"devDependencies": {
"eslint": "^6.5.1",
"jest": "^24.9.0",
"rollup": "^1.12.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"compose-function": "^3.0.3"
}
}