-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 942 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
{
"name": "or-where",
"version": "1.0.0",
"description": "A laravel-esque query builder for JS arrays",
"author": "Angus Allman",
"homepage": "https://github.com/allmanaj/or-where/",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/allmanaj/or-where.git"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^27.5.1",
"babel-preset-env": "^1.7.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"@babel/preset-env": "^7.16.11"
},
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"unpkg": "dist/index.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "NODE_ENV=test jest --coverage"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}