forked from tsivinsky/hi-mom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 837 Bytes
/
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
{
"name": "hi-mom",
"version": "1.2.1",
"description": "A blazingly fast JavaScript library to say hi to your mom!",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"hello-world",
"hello",
"hi",
"mom",
"hi-mom"
],
"author": "Daniil Tsivinsky",
"license": "MIT",
"type": "module",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1",
"rollup": "^2.70.1"
},
"scripts": {
"prebuild": "npm run test",
"build": "rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"exports": {
".": {
"require": "./lib/hi-mom.cjs",
"import": "./lib/hi-mom.esm.js"
}
},
"files": [
"lib/",
"languages/",
"index.d.ts"
]
}