-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.56 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
{
"private": false,
"name": "ajax-worker",
"version": "1.2.13",
"description": "",
"main": "lib/main",
"types": "@types/main",
"scripts": {
"test": "jest --no-cache",
"dev": "npm-run-all --parallel tsc && exit 0",
"tsc": "tsc -w && exit 0",
"build": "tsc && rollup -c && exit 0",
"clean": "rimraf lib/* && exit 0",
"clean-node": "rimraf ./yarn.lock ./package-lock.json ./node_modules/* && exit 0"
},
"babel": {
"presets": [
"@babel/preset-env",
"react",
"es2015"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan2dev/ajax-worker.git"
},
"author": {
"name": "Dan C Castro"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dan2dev/ajax-worker/issues"
},
"homepage": "https://github.com/dan2dev/ajax-worker#readme",
"devDependencies": {
"@types/jest": "^23.1.1",
"jest": "^23.2.0",
"rimraf": "^2.6.2",
"rollup": "^0.61.2",
"rollup-plugin-terser": "^1.0.1",
"run-sequence": "^2.2.1",
"ts-jest": "^22.4.6",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/node": "^10.3.5",
"@types/uniqid": "^4.1.2",
"@types/window-or-global": "^1.0.0",
"object-hash": "^1.3.0",
"resolve-relative-url": "^1.0.0",
"uniqid": "^5.0.3",
"utility-collection": "^2.2.3"
}
}