-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.64 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
98
99
100
101
102
103
{
"name": "wildberry-princess",
"version": "4.0.2-pre",
"description": "JavaScript library for abstracting out Google Analytics (analytics.js) and Kissmetrics.",
"author": "Matthew Callis <[email protected]>",
"homepage": "https://github.com/MatthewCallis/wildberry-princess",
"contributors": [
{
"name": "Matthew Callis",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "Matthew Callis",
"email": "[email protected]",
"web": "https://eludevisibility.org"
}
],
"main": "src/wildberry-princess.js",
"module": "src/wildberry-princess.mjs",
"jsnext:main": "src/wildberry-princess.mjs",
"files": [
"src/wildberry-princess.js",
"src/wildberry-princess.mjs"
],
"directories": {
"lib": "src",
"src": "src",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/MatthewCallis/wildberry-princess"
},
"bugs": {
"url": "https://github.com/MatthewCallis/wildberry-princess/issues"
},
"keywords": [
"analytics",
"wildberry",
"princess"
],
"dependencies": {},
"devDependencies": {
"ava": "^2.2.0",
"browser-env": "^3.2.6",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-ava": "^7.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-no-inferred-method-name": "^1.0.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-optimize-regex": "^1.1.6",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^9.1.1",
"eslint-plugin-xss": "^0.1.9",
"jsdoc-to-markdown": "^5.0.0",
"npm-bump": "^0.0.25",
"nyc": "^14.1.1",
"precommit-hook-eslint": "^3.0.0",
"sinon": "^7.3.2"
},
"preferGlobal": false,
"private": false,
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/MatthewCallis/wildberry-princess/master/LICENSE"
}
],
"scripts": {
"lint": "eslint src",
"local-web-server": "ruby -run -ehttpd . -p12345",
"report": "NODE_ENV=test nyc report --reporter=html",
"test-watch": "npm test -- --watch",
"test": "NODE_ENV=test nyc ava",
"validate": "npm ls"
},
"github": "https://github.com/MatthewCallis/wildberry-princess",
"engines": {
"node": "^8.3.0"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"cache": true,
"all": true,
"check-coverage": true,
"include": [
"src/"
],
"exclude": []
}
}