-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.88 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
{
"name": "@kobayami/number-types",
"version": "1.0.0",
"description": "A minor package that provides type aliases int, long, float and double in TypeScript",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf docs lib test",
"format": "prettier --write \"src/**/*.ts\" \"spec/**/*.ts\"",
"build": "npm run build-main && npm run build-test",
"build-main": "tsc -p tsconfig.src.json",
"build-test": "tsc -p tsconfig.test.json",
"lint": "tslint -p tsconfig.src.json",
"test": "jasmine --config=jasmine.json",
"doc": "typedoc --tsconfig tsconfig.src.json",
"full-build": "npm run clean && npm run format && npm run build && npm run lint && npm run test && npm run doc",
"remove-node_modules": "rm -rf node_modules",
"purge": "npm run clean && npm run remove-node_modules",
"reinstall": "npm run remove-node_modules && npm install",
"reinstall-and-full-build": "npm run reinstall && npm run full-build"
},
"repository": {
"type": "git",
"url": "https://github.com/kobayami/number-types.git"
},
"files": [
"lib/**/*",
"test/**/*",
"jasmine.json"
],
"keywords": [
"type",
"alias",
"int",
"long",
"float",
"double",
"number",
"bigint"
],
"author": "Marco Kaufmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/kobayami/number-types/issues"
},
"homepage": "https://kobayami.github.io/number-types",
"devDependencies": {
"@types/jasmine": "^3.6.9",
"jasmine": "^3.7.0",
"jasmine-console-reporter": "^3.1.0",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.21.0",
"typescript": "^4.2.4"
},
"dependencies": {}
}