This repository was archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.7 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
{
"name": "angular-es6",
"description": "Angular ES6 utility library. Write directives, controllers and services as ES6 classes.",
"version": "3.2.1",
"private": false,
"author": {
"name": "Zlatko Fedor",
"email": "zfedor@gmail.com",
"url": "http://www.cherrysro.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/seeden/angular-es6.git"
},
"license": "MIT",
"keywords": [
"angular",
"class",
"extend",
"es6",
"boilerplate",
"ecmascript",
"ecmascript6",
"object",
"babel",
"webpack"
],
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"prepublish": "npm run build",
"test": "babel-node ./node_modules/gulp/bin/gulp.js test",
"build": "babel-node ./node_modules/gulp/bin/gulp.js build",
"eslint": "node ./node_modules/eslint/bin/eslint.js --ext .js,.jsx ."
},
"main": "./dist/index.js",
"dependencies": {
"lodash": "^4.13.1",
"events": "^1.1.0"
},
"devDependencies": {
"angular": "^1.5.6",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-import": "^1.8.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-mocha": "^2.2.0",
"gulp-util": "^3.0.7",
"should": "^9.0.1",
"webpack": "^1.13.1"
},
"peerDependencies": {
"angular": "^1.2.0"
}
}