-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.85 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
{
"name": "ourstates-bot",
"version": "1.0.0",
"description": "OurStates Chat Bot",
"license": "MIT",
"scripts": {
"test-lint": "./tests/commands/phplint.sh",
"test-unit": "./vendor/bin/phpunit",
"test-coverage": "./vendor/bin/phpunit -d memory_limit=1024M --log-junit 'reports/unitreport.xml' --coverage-html 'reports/clover_html' tests/",
"test": "yarn run test-lint && yarn run test-unit",
"clean": "rm -f ./public/css/app.css && rm -f ./public/js/app.*.js",
"dev": "yarn run clean && node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "yarn run clean && node node_modules/cross-env/dist/bin/cross-env.js NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"help": "node node_modules/npm-scripts-help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/staywoke/ourstates-bot.git"
},
"author": "",
"bugs": {
"url": "https://github.com/staywoke/ourstates-bot/issues"
},
"homepage": "https://github.com/staywoke/ourstates-bot#readme",
"devDependencies": {
"axios": "^0.15.2",
"bootstrap-sass": "^3.3.7",
"graceful-fs": "^4.1.11",
"jquery": "^3.1.0",
"laravel-mix": "^0.5.0",
"lodash": "^4.16.2",
"npm-scripts-help": "^0.7.0",
"vue": "^2.0.1"
},
"scriptshelp": {
"help-message": "OurStates Bot Commands:",
"test-lint": {
"Desciption": "Check PHP Code for Invalid Markup"
},
"test-unit": {
"Desciption": "Run PHP Unit Tests"
},
"test-coverage": {
"Desciption": "Generate Code Coverage Reports into ./reports/clover_html/"
},
"test": {
"Desciption": "Runs `yarn run test-lint` and `yarn run test-unit`"
},
"clean": {
"Desciption": "Remove Generated JS & CSS Files"
},
"dev": {
"Desciption": "Build Bot for Development"
},
"watch": {
"Desciption": "Build Bot for Development and Watch for Live Changes"
},
"hot": {
"Desciption": "Build Bot for Development and Enable Hot Module Replacement"
},
"production": {
"Desciption": "Build Bot for Production"
},
"help": {
"Desciption": "Generates List of Scripts you can run"
}
},
"dependencies": {
"cross-env": "^4.0.0"
}
}