-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "age-calculation-library",
"version": "1.0.0",
"description": "Una biblioteca de JavaScript simple para calcular la edad desde la fecha de nacimiento",
"main": "dist/node/ageCalculator.js",
"module": "dist/browser/ageCalculator.js",
"browser": "dist/browser/ageCalculator.js",
"scripts": {
"build": "npm run build-node && npm run build-browser",
"build-node": "tsc -p tsconfig.node.json",
"build-browser": "tsc -p tsconfig.browser.json",
"test": "npm run test-node && npm run test-browser",
"test-node": "node dist/node/test/test.js",
"test-browser": "node dist/browser/test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notyel/age-calculator.js.git"
},
"keywords": [
"age",
"age calculator",
"age-calculator",
"calculate age",
"find age",
"typescript",
"library",
"calculator"
],
"author": "Leyton Manuel Espitia Diaz",
"license": "MIT",
"bugs": {
"url": "https://github.com/notyel/age-calculator.js.git/issues"
},
"homepage": "https://github.com/notyel/age-calculator.js.git#readme",
"devDependencies": {
"typescript": "^5.4.5"
}
}