-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
60
61
62
{
"name": "eslint-plugin-aurelia",
"version": "2.0.1",
"description": "ESLint rules for Aurelia projects.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"aurelia"
],
"author": "Bryan R Smith <[email protected]>",
"homepage": "https://github.com/bryanrsmith/eslint-plugin-aurelia",
"repository": {
"type": "git",
"url": "git://github.com/bryanrsmith/eslint-plugin-aurelia.git"
},
"main": "dist/index.js",
"directories": {
"lib": "dist/"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "npm run lint && npm run test && rm -rf dist && babel src --out-dir dist",
"test": "babel-node node_modules/.bin/isparta cover --report text-summary --report lcov node_modules/mocha/bin/_mocha -- --recursive",
"lint": "eslint src/ test/",
"ci": "npm run build && cat coverage/lcov.info | node_modules/.bin/coveralls",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"dependencies": {
"eslint-plugin-sort-class-members": "^1.0.1"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"devDependencies": {
"@bryanrsmith/eslint-config-standard": "^2.1.3",
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.0",
"isparta": "^4.0.0",
"mocha": "^2.5.3",
"release-script": "^1.0.2"
},
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"babel": {
"presets": [
"stage-1",
"es2015"
]
}
}