forked from babel/babel-eslint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "lightscript-eslint",
"version": "0.5.9",
"description": "LightScript parser for ESLint, based on babel-eslint",
"main": "index.js",
"files": [
"index.js",
"babylon-to-espree"
],
"repository": {
"type": "git",
"url": "https://github.com/lightscript/lightscript-eslint.git"
},
"dependencies": {
"ast-loc-utils": "^1.0.0",
"babel-code-frame": "^6.16.0",
"babel-core": "^6.24.0",
"babel-plugin-lightscript": "0.5.9",
"babel-traverse": "^6.15.0",
"babel-types": "^6.15.0",
"babylon": "^6.13.0",
"babylon-lightscript": "0.5.9",
"lodash": "^4.17.4",
"lodash.pickby": "^4.6.0"
},
"scripts": {
"bootstrap": "git submodule update --init && cd eslint && npm install",
"eslint": "cd eslint && mocha -c tests/lib/rules/*.js -r ../eslint-tester.js",
"test": "npm run lint && npm run test-only",
"test-only": "mocha",
"lint": "eslint index.js babylon-to-espree test",
"fix": "eslint index.js babylon-to-espree test --fix",
"preversion": "npm test",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
},
"author": "Alex Rattray <[email protected]>",
"homepage": "http://lightscript.org",
"license": "MIT",
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/lightscript/lightscript-eslint/issues"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"eslint": "^3.9.1",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.4.0",
"espree": "^3.3.1",
"mocha": "^3.0.0"
}
}