-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.57 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
{
"name": "@cospired/javascript",
"version": "5.0.1",
"description": "A slightly opinionated approach to JavaScript.",
"scripts": {
"preinstall": "npm run install:config:base && npm run install:config:react",
"install:config:base": "cd packages/eslint-config-base && npm prune && npm install",
"install:config:react": "cd packages/eslint-config-react && npm prune && npm install",
"test": "npm run --silent test:config:base && npm run --silent test:config:react",
"test:config:base": "cd packages/eslint-config-base; npm test",
"test:config:react": "cd packages/eslint-config-react; npm test",
"travis": "npm run --silent travis:config:base && npm run --silent travis:config:react",
"travis:config:base": "cd packages/eslint-config-base; npm run travis",
"travis:config:react": "cd packages/eslint-config-react; npm run travis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cospired/javascript.git"
},
"keywords": [
"style guide",
"lint",
"cospired",
"es6",
"es2015",
"es2016",
"es2017",
"es2018",
"react",
"jsx"
],
"contributors": [
{
"name": "Dirk Haage",
"email": "[email protected]",
"url": "https://cospired.com/"
},
{
"name": "Jan Schmidle",
"email": "[email protected]",
"url": "https://cospired.com/"
}
],
"author": "Dirk Haage <[email protected]>",
"license": "BSD-3-Clause-Clear",
"bugs": {
"url": "https://github.com/cospired/javascript/issues"
},
"homepage": "https://github.com/cospired/javascript#readme"
}