Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: package.json

Issue 29677659: Issue #6303 - Introduce basic foundation for automation in adblockplusui (Closed)
Patch Set: Created Feb. 6, 2018, 3:40 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« README.md ('K') | « README.md ('k') | test_server.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: package.json
===================================================================
new file mode 100644
--- /dev/null
+++ b/package.json
@@ -0,0 +1,16 @@
+{
+ "name": "adblockplusui",
+ "private": true,
+ "description": "Adblock Plus UI",
+ "scripts": {
+ "lint": "npm run lint:js # keeping :js waiting for :css to land",
saroyanm 2018/02/06 17:33:23 Question: what does this comment mean ? # keepin
+ "lint:js": "eslint ./*.js ./lib/*.js ./ext/*.js",
+ "prepare": "python2 ensure_dependencies.py",
+ "start": "http-server $1"
saroyanm 2018/02/06 17:33:23 Suggestion: Rather than allowing to specify the pa
Thomas Greiner 2018/02/06 19:08:48 I'd say let's keep it simple for now and merely re
saroyanm 2018/02/07 09:07:53 Okey, in that case we should at least update the R
+ },
+ "devDependencies": {
+ "eslint": "^4.16.0",
+ "eslint-config-eyeo": "^2.0.0",
+ "http-server": "^0.11.1"
+ }
+}
« README.md ('K') | « README.md ('k') | test_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld