-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (81 loc) · 2.3 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
{
"name" : "@oktarintentakel/annex",
"version" : "0.1.19-beta",
"author" : "Sebastian Schlapkohl",
"description" : "Unit-tested and semantically packaged standard solutions for everyday frontend tasks and syntax streamlining for those ugly darks corners of JS.",
"license" : "MIT",
"repository" : {
"type" : "git",
"url" : "git+https://github.com/OktarinTentakel/annex.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"private" : false,
"keywords" : [
"frontend helpers",
"basic type checks",
"basic value checks",
"data structure helpers",
"dom handling",
"string operations",
"randomization",
"better timers",
"events",
"requests",
"browser context evaluation",
"interaction helpers",
"navigation helpers",
"viewport helpers",
"better logging",
"cookie handling"
],
"type" : "module",
"sideEffects" : false,
"directories" : {
"docs" : "./docs/documentation",
"examples" : "./docs/examples",
"test" : "./test"
},
"//@browserslist" : "only relevant for building the ES5 monolith",
"browserslist" : ["IE >= 11"],
"scripts" : {
"build" : "yarn install; gulp --color build",
"test" : "yarn install; ava --color",
"test-dist" : "yarn install; SOURCE=dist ava --color",
"test-es5-monolith" : "yarn install; SOURCE=es5-monolith ava --color",
"documentation" : "yarn install; gulp --color documentation",
"examples": "yarn install; gulp --color examples"
},
"//@ava" : "updating to v4 requires full refactoring of unit tests",
"devDependencies" : {
"ava" : "~3.15.0",
"@babel/core" : "~7.24.4",
"@babel/preset-env" : "~7.24.4",
"browser-env" : "~3.3.0",
"core-js" : "~3.37.0",
"cors" : "^2.8.5",
"express" : "^4.19.2",
"gulp" : "^4.0.2",
"gulp-connect" : "^5.7.0",
"gulp-inject-string" : "^1.1.2",
"gulp-shell" : "^0.8.0",
"gulp-sourcemaps" : "^3.0.0",
"gulp-terser" : "^2.1.0",
"jsdoc" : "^4.0.2",
"natives" : "^1.1.6",
"rollup" : "^3.29.4",
"@rollup/plugin-babel" : "^6.0.4",
"@rollup/plugin-commonjs" : "^25.0.7",
"@rollup/plugin-node-resolve" : "^15.2.3",
"@rollup/plugin-terser" : "^0.4.4",
"rollup-plugin-includepaths" : "^0.2.4",
"serve-static" : "^1.15.0",
"st" : "^3.0.0",
"yargs" : "^17.7.2"
},
"//@resolutions" : "nswapi 2.2.8 is broken for h1-h6",
"resolutions" : {
"nwsapi" : "2.2.7"
}
}