-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.11 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
{
"name": "sp-answer",
"version": "1.0.4",
"description": "Determine the surprisingly popular answer",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.0",
"browserify": "^16.5.1",
"jest": "^26.0.1",
"terser": "^4.8.0",
"ts-jest": "^26.1.1",
"tsify": "^4.0.2",
"typescript": "^3.9.5"
},
"scripts": {
"build": "tsc --declaration && npm run build:browser",
"build:browser": "browserify -s spAnswer src/main.ts -p [ tsify ] > dist/sp-answer.js && terser --compress --mangle -o dist/sp-answer.min.js dist/sp-answer.js",
"test": "jest --config jestconfig.json",
"coverage": "jest --config jestconfig.json --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/arafathusayn/node-sp-answer.git"
},
"keywords": [
"Surprisingly",
"popular"
],
"author": "Arafat Husayn <hello@arafat.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arafathusayn/node-sp-answer/issues"
},
"homepage": "https://github.com/arafathusayn/node-sp-answer#readme"
}