-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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": "how-to-build-npm-package",
"version": "1.0.1",
"description": "Projeto modelo para ilustrar e orientar o passo a passo para construção de um pacote/biblioteca NPM ",
"main": "/src/index.ts",
"source": "src/index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && cp package.json README.md ./dist",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/DIGOARTHUR/basic-mathjs-example.git"
},
"keywords": [
"NPM",
"Tutorial",
"Building",
"Test",
"Library",
"Package"
],
"author": "@digoarthur",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIGOARTHUR/basic-mathjs-example/issues"
},
"homepage": "https://github.com/DIGOARTHUR/basic-mathjs-example#readme",
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/react": "^18.2.33",
"jest": "^29.7.0",
"react": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}