-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "safe-types",
"version": "4.27.0",
"description": " Type safe utils inspired from the Rust language for writing better JavaScript.",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rm -Rf lib esm",
"build:docs": "typedoc --options typedoc.js",
"build:esm": "tsc -p tsconfig.esm.json && rollup -c",
"build:cjs": "tsc && cp flow-typed/index.js lib/index.js.flow",
"build": "npm run build:cjs && npm run build:esm",
"prepublishOnly": "npm run build",
"prerelease": "npm run test:cov",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:v": "jest --verbose",
"test:cov": "jest --verbose --coverage",
"test:new": "jest -o --verbose --coverage",
"test": "npm run test:cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexsasharegan/safe-types.git"
},
"author": "Alex Regan",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexsasharegan/safe-types/issues"
},
"homepage": "https://github.com/alexsasharegan/safe-types#readme",
"files": [
"lib",
"esm"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "^14.0.23",
"axios": "^0.19.2",
"babel-jest": "^26.1.0",
"coveralls": "^3.1.0",
"jest": "^26.1.0",
"rollup": "^2.21.0",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
},
"dependencies": {}
}