forked from ncdcdev/hello-world-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.6 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
63
64
65
{
"name": "elevationlevel",
"version": "0.1.2",
"description": "This class handles elevation standards, such as TP, GL, 1FL, etc., in building-related applications. It uses decimal.js for decimal calculations.",
"main": "dist/elevationlevel.cjs.js",
"types": "dist/types/index.d.ts",
"module": "dist/elevationlevel.es.js",
"browser": "dist/elevationlevel.js",
"repository": {
"type": "git",
"url": "git@github.com:ncdcdev/ElevationLevel.git"
},
"np": {
"yarn": false,
"cleanup": true,
"tests": true,
"branch": "main"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint --fix 'src/**/*.ts'",
"test": "jest"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"jest": "^29.3.1",
"np": "^7.6.2",
"rollup": "^3.7.5",
"rollup-plugin-minification": "^0.2.0",
"ts-jest": "^29.0.3",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"testMatch": [
"**/test/**/*.test.ts"
]
},
"dependencies": {
"decimal.js": "^10.4.3"
}
}