-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "logui",
"version": "0.5.4a",
"description": "A framework-agnostic client-side JavaScript library for logging user interactions on webpages.",
"main": "./src/main.js",
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"build:nouglify": "cross-env NODE_ENV=production NOUGLIFY=true rollup -c",
"build:nouglify:console": "cross-env NODE_ENV=production NOUGLIFY=true DISPATCHER=console rollup -c",
"build:console": "cross-env NODE_ENV=production DISPATCHER=console rollup -c",
"test": "npm run -s test:build && npm run -s test:run",
"test:build": "echo '> Building test bundle...' && cross-env NODE-ENV=test rollup -c",
"test:run": "echo '> Running tests...' && mocha ./tests/modules/*.js --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxwelld90/logui-client.git"
},
"keywords": [
"javascript",
"logging",
"logging-client",
"framework-agnostic",
"client-side"
],
"author": {
"name": "David Maxwell",
"email": "[email protected]",
"url": "https://www.dmax.org.uk"
},
"bugs": {
"url": "https://github.com/maxwelld90/logui-client/issues"
},
"homepage": "https://github.com/maxwelld90/logui-client#readme",
"files": [
"README.md",
"CHANGELOG.md"
],
"directories": {
"test": "tests/modules/"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@rollup/plugin-replace": "^2.3.3",
"babel-plugin-import-directory": "^1.1.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"http-server": "^0.12.3",
"jsonschema": "^1.2.6",
"mocha": "^8.1.3",
"playwright": "^1.4.0",
"rollup": "^2.26.11",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.4",
"specificity": "^0.4.1"
},
"dependencies": {}
}