-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.58 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
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
{
"name": "potion-client",
"version": "3.2.0",
"description": "A ES6 client for APIs written in Flask-Potion",
"keywords": [
"potion",
"potion flask",
"potion flask client",
"potion client",
"flask"
],
"homepage": "",
"license": "MIT",
"author": {
"name": "Roland Groza",
"email": "rolandjitsu@gmail.com "
},
"main": "./ng.umd.js",
"module": "./ng.es5.js",
"es2015": "./ng.js",
"typings": "./ng.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/biosustain/potion-node"
},
"scripts": {
"clean": "rm -rf out-tsc dist/*",
"lint": "tslint -c tslint.json -p src/tsconfig.spec.json -t stylish --type-check",
"lint:fix": "npm run lint -- --fix",
"pretest": "npm run lint",
"test": "karma start karma.config.js --browsers Chrome --single-run --log-level error",
"test:continuous": "karma start karma.config.js",
"prebuild": "npm run test && npm run clean",
"build": "scripts/build.sh",
"release:prerelease": "scripts/release.sh prerelease",
"release": "scripts/release.sh patch",
"release:preminor": "scripts/release.sh preminor",
"release:minor": "scripts/release.sh minor",
"release:premajor": "scripts/release.sh premajor",
"release:major": "scripts/release.sh major"
},
"dependencies": {
"reflect-metadata": "^0.1.10",
"tslib": "^1.7.1"
},
"peerDependencies": {},
"devDependencies": {
"@angular/common": "^4.4.4",
"@angular/compiler": "^4.4.4",
"@angular/compiler-cli": "^4.4.4",
"@angular/core": "^4.4.4",
"@angular/platform-browser": "^4.4.4",
"@angular/platform-browser-dynamic": "^4.4.4",
"@types/angular": "^1.6.32",
"@types/angular-mocks": "^1.5.11",
"@types/fetch-mock": "^5.12.0",
"@types/jasmine": "^2.6.0",
"@types/jquery": "^3.2.12",
"@types/node": "^8.0.31",
"@types/reflect-metadata": "^0.0.5",
"angular": "^1.6.6",
"angular-mocks": "^1.6.6",
"camelcase": "^4.1.0",
"conventional-changelog-cli": "^1.3.3",
"core-js": "^2.5.1",
"fetch-mock": "^5.12.2",
"jasmine": "^2.8.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-spec-reporter": "^0.0.31",
"karma-typescript": "^3.0.7",
"rollup": "^0.50.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^2.0.1",
"rxjs": "^5.4.3",
"tslib": "^1.7.1",
"tslint": "^5.7.0",
"typescript": "^2.5.3",
"whatwg-fetch": "^2.0.3",
"zone.js": "^0.8.18"
},
"engines": {
"node": ">=6.9"
}
}