-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.17 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
{
"name": "techspecs",
"version": "1.0.0",
"description": "Progamtically get the standardized specs of over 61,000 consumer electronics devices, including the latest smartphones, tablets, smartwatches, laptops, and more.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"techspecs, laptop specs, laptop database, smartphones specs, smartphone database, tablet specs, tablet database, smartwatch specs, smartwatch database"
],
"homepage": "https://github.com/techspecs/techspecs-node",
"bugs": {
"url": "https://github.com/techspecs/techspecs-node"
},
"repository": {
"type": "git",
"url": "https://github.com/techspecs/techspecs-node"
},
"author": {
"name": "TechSpecs"
},
"scripts": {
"test": "npm run build && jest",
"serve": "npm-run-all --parallel build-watch dev",
"build-watch": "tsc -w",
"dev": "nodemon --watch lib --exec \"node lib/index.js\"",
"build": "tsc -p tsconfig-build.json",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"typescript": "^4.6.3"
},
"devDependencies": {
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5"
}
}