-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "onlinesim-js-api",
"version": "1.0.23",
"description": "Library for OnlineSim Api",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf dist",
"build": "tsc && webpack ./dist/index.js -o ./dist/index.bundle.js --mode=production",
"prepare": "npm run clean && npm run build",
"lint": "tslint --project tsconfig.json ./src/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/s00d/onlinesim-api-js.git"
},
"bugs": {
"url": "https://github.com/s00d/onlinesim-api-js/issues"
},
"homepage": "https://github.com/s00d/onlinesim-api-js",
"keywords": [
"sms",
"OnlineSim",
"Api",
"shell",
"serve",
"hmr",
"browser",
"script",
"opie",
"manion",
"typescript"
],
"author": "s00d",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1"
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^16.4.10",
"@types/source-map": "^0.5.7",
"@types/webpack": "^5.28.0",
"rimraf": "^3.0.2",
"source-map": "^0.7.3",
"ts-node": "^10.1.0",
"tslint": "^5.20.1",
"typescript": "^4.3.5",
"webpack-cli": "^4.7.2"
}
}