-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.49 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
{
"name": "plugnplay",
"version": "3.3.0",
"description": "Plugin system for reusable code in node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/e0ipso/plugnplay.git"
},
"author": {
"name": "Mateu (e0ipso)",
"id": 1140906,
"url": "https://github.com/e0ipso",
"email": "mateu.aguilo.bosch@gmail.com"
},
"license": "GPL-2.0",
"engines": {
"node": ">=6.0.0"
},
"private": false,
"bugs": {
"url": "https://github.com/e0ipso/plugnplay/issues"
},
"homepage": "https://github.com/e0ipso/plugnplay#readme",
"scripts": {
"test": "npm run build && nodeunit ./test",
"commitlint": "commitlint",
"flow": "flow",
"build": "rimraf lib && flow-remove-types --all src/ --out-dir lib/ && copy ./src/**/plugnplay.yml lib && flow-copy-source src lib",
"lint": "eslint src",
"emdaer": "emdaer",
"lint:fix": "prettier --write \"./src/**/*.+(js|jsx|ts|tsx|json|md)\" && eslint --fix src",
"lint:ci": "npm run lint -o reports/eslint/issues.json -f json",
"lint-staged": "lint-staged"
},
"keywords": [
"plugin",
"polymorphism"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@emdaer/cli": "^3.2.31",
"@emdaer/plugin-shields": "^3.2.31",
"@emdaer/plugin-value-from-package": "^3.2.31",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"babel-eslint": "^9.0.0",
"conventional-changelog-conventionalcommits": "^4.6.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.92.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"nodeunit": "^0.11.3",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"sinon": "^6.0.1"
},
"dependencies": {
"copy": "^0.3.1",
"easy-factory": "^1.3.0",
"flatted": "^3.0.5",
"flow-copy-source": "^2.0.9",
"flow-remove-types": "^1.2.3",
"glob": "^7.1.2",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"marked": "^4.0.10",
"md5": "^2.2.1",
"pify": "^4.0.0",
"require-subvert": "^0.1.0",
"rimraf": "^3.0.2"
}
}