This repository was archived by the owner on Jul 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.1 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.1 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@buildium/angular-elements",
"version": "2.3.1",
"description": "A collection of directives for building angular applications",
"main": "lib/index.js",
"scripts": {
"pretest": "eslint src/",
"test": "karma start --single-run",
"compile": "babel src --out-dir lib/ --presets=es2015",
"dist": "mkdirp dist && browserify lib/index.js -o dist/buildium-angular-elements.js",
"build": "npm run compile && npm run dist",
"prepublish": "npm run build",
"predocs": "npm run build",
"docs": "node .build/docs.js",
"postversion": "npm run docs -- --gh-pages",
"watch:docs": "nodemon --watch src/ --exec npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buildium/angular-elements.git"
},
"keywords": [],
"author": "Buildium <buidiumadmin@buildium.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buildium/angular-elements/issues"
},
"homepage": "https://github.com/buildium/angular-elements#readme",
"dependencies": {
"lodash.find": "4.6.0",
"lodash.uniqueid": "4.0.1"
},
"peerDependencies": {
"angular": ">=1.5",
"jquery": "^2.2.3"
},
"devDependencies": {
"@buildium/angular-docs": "1.2.2",
"@buildium/theme": "3.13.0",
"angular": "1.5.9",
"angular-mocks": "1.5.9",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"browserify": "14.1.0",
"electron": "4.1.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-config-buildium": "4.1.0-0",
"eslint-plugin-buildium": "2.1.0",
"eslint-plugin-import": "2.8.0",
"faker": "4.1.0",
"glob": "7.1.2",
"jasmine": "2.5.3",
"jquery": "2.2.4",
"karma": "4.0.1",
"karma-browserify": "5.1.1",
"karma-electron-launcher": "0.2.0",
"karma-jasmine": "1.1.0",
"mkdirp": "0.5.1",
"reset-css": "4.0.1",
"watchify": "3.11.1"
},
"eslintConfig": {
"extends": "buildium",
"rules": {
"linebreak-style": [
"warn",
"unix"
]
},
"env": {
"jasmine": true
},
"globals": {
"angular": true
}
}
}