forked from simpleanalytics/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "scripts",
"version": "1.0.0",
"description": "Simple Analytics visitor facing scripts",
"main": "minify.js",
"scripts": {
"minify": "node minify.js",
"watch": "node_modules/.bin/nodemon minify.js --ignore dist",
"pretest": "npm run minify -- testing",
"test": "if [ ! $BROWSERSTACK_USERNAME ]; then node -r dotenv/config ./test/index.js; else node ./test/index.js; fi",
"posttest": "npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simpleanalytics/scripts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/simpleanalytics/scripts/issues"
},
"homepage": "https://github.com/simpleanalytics/scripts#readme",
"dependencies": {},
"devDependencies": {
"@ianwalter/bsl": "^2.1.1",
"browserstack-local": "^1.4.5",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.7.2",
"esprima": "^4.0.1",
"handlebars": "^4.7.6",
"mocha": "^6.2.3",
"nodemon": "^1.19.4",
"request": "^2.88.0",
"selenium-webdriver": "^4.0.0-alpha.5",
"uglify-js": "^3.9.4",
"uuid-validate": "0.0.3"
}
}