forked from AmericaCampaign/javascript-workshops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 1.02 KB
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
{
"name": "javascript-workshops",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:AmericaCampaign/javascript-workshops.git",
"author": "Jay Cheroske <jay@portal.org>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.2.1",
"eslint-plugin-standard": "^3.0.1",
"rimraf": "^2.6.1"
},
"scripts": {
"clean": "rimraf ./data-and-functions-1/node_modules && rimraf ./data-and-functions-2/node_modules && rimraf ./data-and-functions-3/node_modules",
"clean:root": "rimraf ./node_modules",
"update": "git checkout master && git pull upstream master",
"update:answers": "git checkout answers && git pull upstream answers && git checkout master",
"postinstall": "./install.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
}
}