UNPKG

810 BJSONView Raw
1{
2 "name": "tslint-react",
3 "version": "2.2.0",
4 "description": "Lint rules related to React & JSX for TSLint",
5 "main": "tslint-react.json",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/palantir/tslint-react.git"
9 },
10 "license": "Apache-2.0",
11 "scripts": {
12 "build": "npm-run-all -p compile lint",
13 "clean": "rm -rf build/",
14 "compile": "tsc -p ./",
15 "copy": "cp -f package.json README.md tslint-react.json build/",
16 "lint": "tslint 'src/**/*.ts'",
17 "preversion": "npm-run-all clean test copy",
18 "test": "npm-run-all build test-rules",
19 "test-rules": "scripts/verify.sh"
20 },
21 "devDependencies": {
22 "colors": "^1.1.2",
23 "glob": "^7.0.3",
24 "npm-run-all": "^2.1.2",
25 "path": "^0.12.7",
26 "tslint": "^4.0.1",
27 "typescript": "^2.0.10"
28 }
29}