forked from CIAT-DAPA/pakistan_web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "alliance-csa-pakistan",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "./node_modules/.bin/gulp dev",
"lint": "eslint --ignore-path .gitignore public",
"lint:fix": "eslint --ignore-path .gitignore --fix public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ciatph/alliance-csa-pakistan.git"
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": [
"standard",
"eslint:recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"camelcase": 0,
"no-unused-vars": "off",
"no-undef": "off"
}
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ciatph/alliance-csa-pakistan/issues"
},
"homepage": "https://github.com/ciatph/alliance-csa-pakistan#readme",
"devDependencies": {
"browser-sync": "^2.26.14",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"gulp": "^4.0.2"
}
}