-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.27 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.27 KB
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
{
"name": "scriba",
"version": "1.0.5",
"description": "Generic, zero-dependency event logger",
"main": "lib/index.js",
"scripts": {
"build": "parcel build src/index.js -d lib",
"test": "flow && xo && ava",
"lint": "flow && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolyaventuri/scriba.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolyaventuri/scriba/issues"
},
"homepage": "https://github.com/kolyaventuri/scriba#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"ava": "^1.1.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint-plugin-flowtype": "^3.2.1",
"flow-bin": "^0.91.0",
"parcel-bundler": "^1.11.0",
"pre-commit": "^1.2.2",
"sinon": "^7.2.3",
"xo": "^0.24.0"
},
"pre-commit": [
"lint"
],
"ava": {
"require": [
"@babel/register"
]
},
"xo": {
"parser": "babel-eslint",
"extends": [
"plugin:flowtype/recommended"
],
"plugins": [
"flowtype"
],
"space": true,
"ignore": [
"lib/**/*"
]
}
}