-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.29 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
{
"name": "@lcluber/aiasjs",
"version": "3.2.1",
"description": "Promise and observable based HTTP client (Ajax) library",
"keywords": [
"ajax",
"http",
"http client",
"promise",
"observable"
],
"homepage": "https://github.com/LCluber/Aias.js",
"main": "dist/aias",
"types": "dist/aias",
"repository": {
"type": "git",
"url": "https://github.com/LCluber/Aias.js"
},
"bugs": {
"url": "https://github.com/LCluber/Aias.js/issues",
"email": ""
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"email": "http://www.lcluber.com/contact",
"url": "http://www.lcluber.com"
},
"contributors": [],
"scripts": {
"start": "",
"build": "npm run clean && tsc && npm run rollup && grunt build && npm run banner",
"clean": "rimraf dist/* src/ts/build/*",
"rollup": "rollup --config rollup.config.mjs && rollup --config rollup.config.js",
"banner": "cat license.js src/ts/build/aias.js > dist/aias.js && cat license.js src/ts/build/aias.iife.js > dist/aias.iife.js && cat license.js src/ts/build/aias.d.ts > dist/aias.d.ts",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "npm run test",
"commit-msg": "",
"pre-push": ""
}
},
"files": [
"dist/"
],
"dependencies": {
"@lcluber/chjs": "2.13.0",
"@types/promise-polyfill": "6.0.3",
"polyfill-array-includes": "2.0.0",
"promise-polyfill": "8.1.3",
"rxjs": "6.5.3"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.5",
"@babel/runtime": "7.9.2",
"@rollup/plugin-commonjs": "11.0.2",
"@rollup/plugin-node-resolve": "7.1.3",
"babel-jest": "24.9.0",
"core-js": "3.6.4",
"grunt": "1.0.2",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "3.3.0",
"grunt-strip-code": "1.0.6",
"grunt-ts": "6.0.0-beta.19",
"husky": "2.7.0",
"jest": "24.9.0",
"rimraf": "3.0.2",
"rollup": "2.3.3",
"rollup-plugin-analyzer": "3.2.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-progress": "1.1.1",
"rollup-plugin-size-snapshot": "0.11.0",
"rollup-plugin-sizes": "1.0.2",
"time-grunt": "1.4.0",
"tslint": "5.20.1",
"typescript": "3.7.4"
}
}