-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "static-fs",
"version": "1.10.1",
"description": "A static filesystem to bundle files and read them using Node.js",
"main": "dist/index.js",
"scripts": {
"build": "node scripts/build",
"clean": "rimraf dist",
"cm": "git-cz",
"lint": "eslint --ext .js src",
"lint:fix": "yarn lint --fix",
"prepublish": "node scripts/pre_publish",
"release": "semantic-release",
"release:dryRun": "yarn release --dry-run",
"test": "jest --config test/jest/config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mistic/static-fs.git"
},
"keywords": [
"filesystem",
"static",
"bundle",
"read",
"node"
],
"files": [
"dist/**/*.js"
],
"author": "Tiago Costa",
"license": "MIT",
"bugs": {
"url": "https://github.com/mistic/static-fs/issues"
},
"homepage": "https://github.com/mistic/static-fs#readme",
"resolutions": {
"**/minimist": "^1.2.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"commitizen": "^4.0.3",
"core-js": "3.6.4",
"cpy": "^8.0.1",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.7.0",
"eslint-plugin-prettier": "^3.1.2",
"execa": "^4.0.0",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"webpack": "^4.41.6",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "10.19.0",
"yarn": ">=1.21.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}