-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "angular-bootstrap-forms",
"version": "0.1.0",
"description": "angular directives for twitter bootstrap forms",
"main": "src/angular-bootstrap-forms.js",
"scripts": {
"test": "npm test",
"example": "beefy docs/example/app.js --live",
"lint": "eslint src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assisrafael/angular-bootstrap-forms.git"
},
"keywords": [
"angular",
"twitter",
"bootstrap",
"forms"
],
"author": "Igor Rafael <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assisrafael/angular-bootstrap-forms/issues"
},
"homepage": "https://github.com/assisrafael/angular-bootstrap-forms#readme",
"devDependencies": {
"angular": "^1.4.8",
"angular-messages": "^1.4.8",
"bootstrap": "^3.3.6",
"browserify": "^12.0.1",
"font-awesome": "^4.5.0"
},
"dependencies": {
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}