-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.21 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
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@nod/debug-with-package-name",
"version": "1.0.0",
"description": "Auto prefixes debug module with package name",
"main": "./build/index.js",
"scripts": {
"test": "ava --watch",
"test-once": "ava",
"build": "backpack",
"flow": "flow",
"start": "nodemon --watch \"./src\" --exec \"npm run build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NOD-studios/debug-prefix-package-name.git"
},
"keywords": [
"debug",
"prefix",
"package",
"name"
],
"author": "Furkan Tunali <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/NOD-studios/debug-prefix-package-name/issues"
},
"homepage": "https://github.com/NOD-studios/debug-prefix-package-name#readme",
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"debug": "^3.1.0",
"debug-module-prefix": "^0.2.2",
"read-pkg-up": "^3.0.0"
},
"devDependencies": {
"ava": "^0.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-flow-runtime": "^0.15.0",
"babel-preset-flow": "^6.23.0",
"backpack-core": "^0.4.3",
"eslint": "^4.11.0",
"eslint-config-cleanjs": "^4.0.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.3.1",
"flow-bin": "^0.59.0",
"flow-runtime": "^0.16.0",
"nodemon": "^1.12.1",
"prettier": "^1.8.2"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"cleanjs",
"prettier",
"plugin:flowtype/recommended"
],
"plugins": [
"flowtype",
"prettier"
],
"rules": {
"prettier/prettier": "error",
"import/no-commonjs": 0
}
},
"babel": {
"presets": [
"flow",
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
],
"node": "current"
}
}
]
],
"plugins": [
[
"flow-runtime",
{
"assert": true,
"annotate": true
}
],
"add-module-exports"
]
}
}