-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
62 lines (62 loc) · 1.34 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
{
"name": "shvl",
"version": "3.0.0",
"description": "Get and set dot-notated properties within an object",
"license": "MIT",
"author": "Robin van der Vleuten <[email protected]>",
"source": "index.js",
"main": "dist/shvl.js",
"module": "dist/shvl.mjs",
"unpkg": "dist/shvl.umd.js",
"typings": "index.d.ts",
"keywords": [
"path",
"dot notation",
"dot"
],
"files": [
"dist",
"index.d.ts",
"index.js"
],
"scripts": {
"build": "microbundle",
"prepare": "run-s build",
"test": "run-p test:**",
"test:jest": "jest",
"test:size": "bundlesize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robinvdvleuten/shvl.git"
},
"bugs": {
"url": "https://github.com/robinvdvleuten/shvl/issues"
},
"homepage": "https://github.com/robinvdvleuten/shvl#readme",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"bundlesize": [
{
"path": "./dist/*.js",
"threshold": "300b"
}
],
"jest": {
"testEnvironment": "jsdom"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-jest": "^29.0.1",
"bundlesize": "^0.18.0",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"jest-in-case": "^1.0.2",
"microbundle": "^0.15.0",
"npm-run-all": "^4.1.2"
}
}