-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 1.86 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": "interpolate-json",
"version": "3.0.0",
"description": "Interpolate a Javascript Object or String with json - Advanced",
"main": "index.js",
"scripts": {
"bdd-test": "cd tests && mocha ./**.spec.js",
"unit-test": "mocha ./lib/**.spec.js",
"test": "yarn run bdd-test",
"size": "size-limit --json",
"analyze": "size-limit --why",
"pre-check": "gulp",
"build": "gulp preBuild"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Terran-Source/interpolate-json.git"
},
"keywords": [
"interpolate",
"interpolation",
"javascript-interpolation",
"json-interpolation",
"string-interpolation",
"substitution",
"node",
"nodejs"
],
"author": "Tamal Patra <patra.tamal@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Terran-Source/interpolate-json/issues"
},
"homepage": "https://github.com/Terran-Source/interpolate-json#readme",
"publishConfig": {
"access": "public"
},
"contributors": [
{
"name": "Tamal Patra",
"email": "patra.tamal@gmail.com",
"url": "https://sourcerer.io/turn-a-round",
"contributions": 100,
"hireable": true
}
],
"size-limit": [
{
"path": [
"dist",
"!dist/**.md",
"!dist/LICENSE"
],
"limit": "15 KB"
},
{
"path": "dist/index.js",
"limit": "5 KB"
},
{
"path": "dist/lib/main.js",
"limit": "5 KB"
}
],
"dependencies": {
"custom-exception": "^0.1.2",
"extend": "^3.0.2",
"type-detect": "^4.0.8"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"chai": "^4.3.7",
"del": "^6.1.1",
"gulp": "^4.0.2",
"gulp-terser": "^2.1.0",
"mocha": "^10.2.0",
"readable-stream": "^4.3.0",
"size-limit": "^8.2.4"
},
"engines": {
"node": ">=14.0.0"
}
}