-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 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
46
47
48
49
50
{
"name": "@waxs/needle",
"version": "1.1.1",
"description": "Find your needle in a haystack. Needle is a small and fast query builder for sorting, manipulating and retrieving data.",
"main": "dist/needle.pkg.js",
"scripts": {
"start": "webpack --env=dev --config webpack.config.js --progress --profile --colors --watch",
"base": "webpack --env=dev --config webpack.config.js --progress --profile --bail",
"build": "webpack --env=prod --config webpack.config.js --progress --profile --bail",
"package": "webpack --env=package --config webpack.config.js --progress --profile --bail",
"prod": "npm run base && npm run build & npm run package",
"test": "jest"
},
"author": "Sander Hidding",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/waxs/needle"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"jest": "^24.9.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"jest": {
"modulePaths": [
"<rootDir>"
],
"testMatch": [
"**/test/**/*.test.js"
],
"moduleNameMapper": {
"^@build(.*)$": "<rootDir>/dist$1",
"^@js(.*)$": "<rootDir>/src$1",
"^@mock(.*)$": "<rootDir>/mockup$1",
"^@util(.*)$": "<rootDir>/src/util$1"
}
}
}