-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "angular-bem",
"version": "2.2.0",
"description": "A set of Angular (v2+) directives to simplify your workflow with BEM methodology",
"main": "dist/bundles/angular-bem.umd.js",
"scripts": {
"build": "ng-packagr -p package.json",
"prepare": "ng-packagr -p package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenphi/angular-bem.git"
},
"keywords": [
"angular",
"bem",
"directive",
"markup"
],
"author": "Andrey Yamanov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tenphi/angular-bem/issues"
},
"homepage": "https://github.com/tenphi/angular-bem#readme",
"module": "dist/fesm5/angular-bem.js",
"es2015": "dist/fesm2015/angular-bem.js",
"esm5": "dist/esm5/angular-bem.js",
"esm2015": "dist/esm2015/angular-bem.js",
"fesm5": "dist/fesm5/angular-bem.js",
"fesm2015": "dist/fesm2015/angular-bem.js",
"typings": "dist/angular-bem.d.ts",
"metadata": "dist/angular-bem.metadata.json",
"sideEffects": false,
"dependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@angular/compiler": "^6.0.7",
"@angular/compiler-cli": "^6.0.7",
"@angular/core": "^6.0.0",
"ng-packagr": "^3.0.3",
"rxjs": "^6.0.0",
"typescript": "~2.7.0"
},
"ngPackage": {
"lib": {
"entryFile": "src/bem.ts"
}
}
}