-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.49 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
{
"name": "portals",
"version": "3.1.5",
"description": "Client-side HTTP requests with middleware support.",
"main": "dist/index.js",
"jsnext:main": "dist/index.es.js",
"typings": "dist/index.d.ts",
"scripts": {
"preversion": "npm test && npm run lint",
"version": "npm run build",
"postversion": "git push origin master && git push origin master --tags",
"build": "rollup -c",
"lint": "tslint -p ./",
"watch": "rollup -cw",
"test": "jest",
"tdd": "jest --watch",
"prepare": "npm test && rm -rf dist/ && npm run build"
},
"repository": {
"type": "git",
"url": "git@github.com:HelpfulHuman/Portals.git"
},
"keywords": [
"xhr",
"ajax",
"api",
"services",
"middleware",
"client",
"spa",
"portals"
],
"author": "Nick Glenn <nick@helpfulhuman.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/HelpfulHuman/Portals/issues"
},
"homepage": "https://github.com/HelpfulHuman/Portals",
"devDependencies": {
"@types/jest": "^21.1.10",
"braces": "^2.3.2",
"jest": "^24.1.0",
"rollup": "^0.53.4",
"rollup-plugin-typescript2": "^0.9.0",
"rollup-watch": "^4.3.1",
"ts-jest": "^24.0.0",
"tslint": "^5.12.1",
"typescript": "^2.9.2"
},
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}