-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "angular1-async-filter",
"version": "1.1.0",
"description": "Angular2 async pipe implemented as Angular 1 filter to handle promises & RxJS observables",
"main": "async-filter.js",
"scripts": {
"build": "babel src/async-filter.js -o async-filter.js --presets 'es2015'",
"test": "./node_modules/karma/bin/karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cvuorinen/angular1-async-filter.git"
},
"keywords": [
"angular",
"async",
"filter",
"promise",
"observable",
"rxjs"
],
"author": "Carl Vuorinen",
"license": "MIT",
"bugs": {
"url": "https://github.com/cvuorinen/angular1-async-filter/issues"
},
"homepage": "https://github.com/cvuorinen/angular1-async-filter#readme",
"devDependencies": {
"angular": "^1.5.7",
"angular-mocks": "^1.5.7",
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"jasmine": "^2.4.1",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.7"
}
}