generated from 47ng/typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "tapers",
"version": "0.1.0",
"description": "Convert [0;1] values to [X;Y] with various curves",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "François Best",
"email": "contact@francoisbest.com",
"url": "https://francoisbest.com"
},
"repository": {
"type": "git",
"url": "https://github.com/47ng/tapers"
},
"keywords": [
"maths",
"curves",
"transforms",
"normalize",
"denormalize"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --verbose",
"test:watch": "jest --verbose --watch",
"dev": "nodemon -e ts,.env -w .env -w . -x 'run-s build:ts test'",
"build:clean": "rm -rf ./dist",
"build:ts": "tsc",
"build": "run-s build:clean build:ts",
"ci": "run-s test build"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^16.0.0",
"husky": "^7.0.0",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"ts-jest": "^25.2.0",
"ts-node": "^10.0.0",
"typescript": "^3.7.5"
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-push": "yarn ci"
}
}
}