-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "paths-exist",
"description": "check whether single path exists; check whether array of paths exist",
"keywords": [
"file exists",
"files exist",
"path exists",
"check path",
"fs.access",
"paths exist",
"path checker"
],
"version": "0.2.5",
"main": "build/main.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/servexyz/paths-exist"
},
"devDependencies": {
"@ava/babel-preset-stage-4": "^3.0.0",
"@babel/core": "7.5.0",
"@babel/node": "7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "7.5.2",
"@babel/register": "7.4.4",
"ava": "^2.2.0",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"nodemon": "^1.19.1",
"nodemon-webpack-plugin": "^4.0.8",
"npm-run-all": "^4.1.5",
"size-plugin": "^1.2.0",
"snyk": "^1.197.0",
"source-map-loader": "^0.2.4",
"tacker": "^0.2.7",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-node-externals": "^1.7.2",
"webpackbar": "^3.2.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"fs-extra": "^8.1.0"
},
"scripts": {
"start": "npm run dev",
"build": "webpack --mode production --display minimal",
"clean": "npm run clean:build",
"clean:build": "rm -Rf ./build",
"dev": "npm run dev:liveReloadedModuleAndTests",
"dev:vanillaModule": "babel-node src/index.js",
"dev:liveReloadedModule": "nodemon --watch src/index.js --exec 'babel-node src/index.js'",
"dev:liveReloadedModuleAndTests": "npm-run-all -s clean:build build test:liveReloadedAva",
"test": "npm run test:ava",
"test:ava": "ava",
"test:liveReloadedAva": "ava --watch",
"production": "npm run build && node build/main.js",
"ci": "npm-run-all -s build ci:local:timed:vuln",
"ci:snyk": "snyk test",
"ci:remote": "npm run build && npm run test:ava",
"ci:local": "trevor",
"ci:local:timed": "npm run ci:local | gnomon --type=elapsed-total",
"ci:local:timed:vuln": "npm-run-all -p ci:snyk ci:local | gnomon --type=elapsed-total",
"ci:local:cache:install": "docker pull verdaccio/verdaccio",
"ci:local:cache:run": "docker run -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio",
"ci:prepare": "npm install -g trevor gnomon"
},
"ava": {
"require": [
"@babel/register"
],
"babel": {
"testOptions": {
"babelrc": true,
"configFile": true
}
},
"files": [
"tests/**/*"
],
"verbose": true
}
}