forked from tsivinsky/hi-mom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 979 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
42
43
44
45
46
{
"name": "faster-hi-mom",
"version": "1.0.0",
"description": "A blazingly fast JavaScript library to say hi to your mom! forked from hi-mom",
"main": "index.js",
"types": "index.d.ts",
"keywords": [
"10x",
"hello-world",
"hello",
"hi",
"mom",
"hi-mom"
],
"author": "Amr Abulseoud",
"license": "MIT",
"type": "module",
"devDependencies": {
"hi-mom": "1.0.0",
"benchmark": "^2.1.4",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"jest": "^27.5.1",
"rollup": "^2.70.1"
},
"scripts": {
"intl": "node make-intl.js",
"bench": "node bench.js",
"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/",
"lang/",
"index.d.ts"
]
}