-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
66
{
"name": "simple-bool",
"version": "4.1.0",
"description": "A simple set of functions that return a boolean.",
"files": [
"/dist"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js"
}
},
"scripts": {
"test": "karma start karma.conf.js",
"start": "ts-node-dev --respawn src/index.ts",
"clean": "rmdir /s /Q dist",
"build": "npm run clean && tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && node ./scripts/prepare-package-json.js",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"build:web": "npm run clean && tsc --project tsconfig.esm.json && npm exec webpack",
"npm-publish": "npm run build && npm publish",
"deploy": "gh-pages -d dist/browser"
},
"repository": {
"type": "git",
"url": "https://github.com/joker876/simple-bool.git"
},
"bugs": {
"url": "https://github.com/joker876/simple-bool/issues"
},
"homepage": "https://github.com/joker876/simple-bool#readme",
"author": "joker876",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/jest": "^29.2.3",
"cross-env": "^7.0.3",
"jasmine": "^4.1.0",
"jasmine-core": "^5.4.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-typescript": "^5.5.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"keywords": [
"bool",
"boolean",
"is",
"type",
"typeof",
"if",
"yes",
"no",
"yesno",
"evaluate"
]
}