-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
63
{
"name": "aurelia-binding-loader",
"version": "1.1.0",
"description": "An Aurelia loader for using any module directly from a view template.",
"main": "dist/index.js",
"directories": {
"lib": "dist/"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "rm -rf dist && babel src --out-dir dist",
"test": "echo \"Error: no test specified\"",
"lint": "eslint src/**/*.js",
"patch": "release patch",
"minor": "release minor",
"major": "release major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryanrsmith/aurelia-binding-loader.git"
},
"keywords": [
"aurelia",
"binding",
"templates"
],
"author": "Bryan R Smith <BryanRSmith@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bryanrsmith/aurelia-binding-loader/issues"
},
"homepage": "https://github.com/bryanrsmith/aurelia-binding-loader#readme",
"peerDependencies": {
"aurelia-logging": "^1.0.0-beta.1.2.0",
"aurelia-templating": "^1.0.0-beta.1.2.0"
},
"devDependencies": {
"@bryanrsmith/eslint-config-standard": "2.0.2",
"babel-cli": "6.6.4",
"babel-eslint": "6.0.0-beta.6",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-es2015": "6.6.0",
"babel-preset-stage-1": "6.5.0",
"eslint": "2.4.0",
"release-script": "1.0.2"
},
"babel": {
"presets": [
"es2015",
"stage-1"
],
"plugins": [
"transform-decorators-legacy"
]
},
"eslintConfig": {
"extends": "@bryanrsmith/eslint-config-standard",
"parser": "babel-eslint"
}
}