-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.69 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
{
"name": "noutaa",
"version": "1.0.0",
"description": "https://github.com/JesusCrow/noutaa.git",
"main": "index.mjs",
"module": "index.mjs",
"scripts": {
"test": "jest --coverage",
"dev": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JesusCrow/noutaa.git"
},
"keywords": [
"noutaa",
"fetch",
"request",
"xhr",
"https",
"ajax"
],
"author": "Paulius Varna",
"license": "MIT",
"bugs": {
"url": "https://github.com/JesusCrow/noutaa/issues"
},
"homepage": "https://github.com/JesusCrow/noutaa#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/node": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"create-test-server": "^2.4.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.6.0",
"regenerator-runtime": "^0.12.1"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.?(m)js?(x)",
"**/?(*.)(spec|test).?(m)js?(x)"
],
"moduleFileExtensions": [
"mjs",
"js"
],
"transform": {
"^.+\\.mjs$": "babel-jest"
}
},
"babel": {
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
[
"@babel/plugin-transform-modules-commonjs",
{
"spec": true
}
]
]
}
}
}
}