-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "wne-style",
"version": "1.0.0",
"description": "A mostly reasonable approach to TypeScript.",
"scripts": {
"lint": "markdownlint --config linters/.markdownlint.json README.md */README.md",
"pretest": "npm run --silent lint",
"test": "npm run --silent test:config && npm run --silent test:config:base",
"test:config": "cd packages/eslint-config-airbnb; npm test",
"test:config:base": "cd packages/eslint-config-airbnb-base; npm test",
"pretravis": "npm run --silent lint",
"travis": "npm run --silent travis:config && npm run --silent travis:config:base",
"travis:config": "cd packages/eslint-config-airbnb; npm run travis",
"travis:config:base": "cd packages/eslint-config-airbnb-base; npm run travis"
},
"repository": {
"type": "git",
"url": "https://github.com/ImagineLearning/typescript.git"
},
"keywords": [
"style guide",
"lint",
"airbnb",
"es6",
"es2015",
"es2016",
"es2017",
"es2018",
"react",
"jsx"
],
"author": "Harrison Shoff <[email protected]> (https://twitter.com/hshoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ImagineLearning/typescript/issues"
},
"homepage": "https://github.com/ImagineLearning/typescript",
"devDependencies": {
"markdownlint": "^0.20.4",
"markdownlint-cli": "^0.23.2"
},
"workspaces": [
"packages/*"
],
"private": true
}