This repository was archived by the owner on Aug 18, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.45 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.45 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "ts-angular-jsonapi",
"version": "0.6.39",
"description": "JSONAPI library developed for AngularJS in Typescript",
"repository": {
"type": "git",
"url": "https://github.com/reyesoft/ts-angular-jsonapi"
},
"bugs": {
"url": "https://github.com/reyesoft/ts-angular-jsonapi/issues"
},
"dependencies": {
"angular-localforage": "1.3.7"
},
"peerDependencies": {
"angular": ">=1.4.0"
},
"devDependencies": {
"@types/angular": "^1.6.32",
"@types/angular-localforage": "^1.2.35",
"@types/angular-mocks": "^1.5.11",
"@types/angular-ui-router": "^1.1.36",
"@types/es6-shim": "^0.31.35",
"@types/jasmine": "^2.5.54",
"@types/jquery": "^3.2.12",
"@types/node": "^8.0.26",
"angular": "^1.6.6",
"angular-mocks": "^1.6.6",
"angular-ui-router": "1.0.3",
"autoprefixer": "^6.7.7",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"bootstrap": "^3.3.7",
"browser-sync": "^2.18.13",
"browser-sync-spa": "^1.0.3",
"css-loader": "^0.26.1",
"declaration-bundler-webpack-plugin": "^1.0.3",
"del": "^2.2.2",
"es6-shim": "^0.35.3",
"eslint": "^4.6.0",
"eslint-config-angular": "^0.5.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-angular": "^1.6.1",
"eslint-plugin-babel": "^4.1.2",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.11.1",
"gulp": "github:gulpjs/gulp#4ed9a4a3275559c73a396eff7e1fde3824951ebb",
"gulp-add-src": "^0.2.0",
"gulp-angular-filesort": "^1.1.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-clean": "^0.3.2",
"gulp-delete-lines": "0.0.7",
"gulp-filter": "^5.0.1",
"gulp-gh-pages": "^0.5.4",
"gulp-htmlmin": "^3.0.0",
"gulp-hub": "github:frankwallis/gulp-hub#d461b9c700df9010d0a8694e4af1fb96d9f38bf4",
"gulp-inject-string": "^1.1.0",
"gulp-insert": "^0.5.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-replace": "^0.5.4",
"gulp-sass": "^3.1.0",
"gulp-typescript": "^3.2.2",
"gulp-util": "^3.0.8",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.30.1",
"jasmine": "^2.8.0",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-angular-filesort": "^1.0.2",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-webpack": "^2.0.4",
"ng-annotate-loader": "^0.2.0",
"node-sass": "^4.5.3",
"phantomjs-prebuilt": "^2.1.15",
"postcss-loader": "^1.3.1",
"sass-loader": "^6.0.1",
"style-loader": "^0.13.1",
"ts-loader": "^2.3.4",
"tslint": "5.5.0",
"tslint-loader": "3.5.3",
"typescript": "2.5.3",
"webpack": "3.3.0",
"webpack-fail-plugin": "^1.0.5"
},
"files": [
"index.js",
"dist/**",
"LICENSE",
"README.md",
"package.json"
],
"keywords": [
"angularjs",
"jsonapi",
"typescript"
],
"license": "ISC",
"scripts": {
"build": "rm -rf dist/* && gulp build",
"start": "gulp serve",
"prepare": "gulp build"
},
"eslintConfig": {
"globals": {
"expect": true
},
"root": true,
"env": {
"browser": true,
"jasmine": true
},
"parser": "babel-eslint",
"extends": [
"xo-space/esnext"
]
},
"main": "/dist/ts-angular-jsonapi.js",
"typings": "./dist/index.d.ts"
}