-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
51
{
"name": "@waxs/hangin",
"version": "1.1.0",
"description": "Hang-in there, data is coming! Schedule jobs, plan, and await the outcome with hangin JS.",
"main": "dist/hangin.pkg.js",
"scripts": {
"serve": "webpack-dev-server --env=dev",
"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/hangin"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"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"
}
}
}