-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "map-countdown",
"main": "./dist/bundle.js",
"bin": {
"map-countdown": "./bin/route-parser.js"
},
"version": "0.0.0-development",
"description": "Display the countdown on a map via polygons",
"repository": "git@github.com:dawidjaniga/map-countdown.git",
"author": "Dawid Janiga <dawidjaniga@gmail.com>",
"license": "MIT",
"scripts": {
"test": "standard && TZ=utc jest test",
"test:watch": "TZ=utc jest test --watch",
"test:update": "TZ=utc jest -u",
"prebuild": "rimraf dist bin",
"build": "npm-run-all --parallel build:**",
"build:bundle": "rollup -c rollup.config.dist.js",
"build:cli": "rollup -c rollup.config.bin.js",
"dev": "rollup -c -w",
"dev:lib": "nodemon dist/ bin/ -x 'yalc push'",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"bin"
],
"devDependencies": {
"@babel/core": "7.14.8",
"@babel/preset-env": "7.5.0",
"@testing-library/dom": "5.5.4",
"babel-jest": "29.7.0",
"jest": "24.8.0",
"jest-dom": "4.0.0",
"jest-google-maps-mock": "1.0.3",
"mockdate": "3.0.5",
"nodemon": "1.19.2",
"npm-run-all": "4.1.5",
"parcel": "1.12.4",
"rimraf": "2.6.3",
"rollup": "4.28.1",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-livereload": "1.0.2",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "2.0.5",
"rollup-plugin-serve": "1.0.2",
"semantic-release": "15.13.17",
"standard": "13.0.1",
"xml2json": "0.12.0"
},
"standard": {
"ignore": [
"dist",
"examples",
"bin"
]
},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js"
}
}
}