-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "toggle-group-dev",
"version": "1.0.4",
"description": "ToggleGroup - A map like data structure to handle multiple toggle(-able) elements",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@tsconfig/node10": "^1.0.8",
"@types/jasmine": "^3.10.2",
"babel-minify": "^0.5.1",
"babel-preset-minify": "^0.5.1",
"jasmine": "^3.10.0",
"jsdoc": "^3.6.7",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"scripts": {
"build": "npm run test && npm run tsc && npm run babel",
"doc": "npm run build && npm run jsdoc",
"test": "npm run jasmine",
"tsc": "tsc",
"babel": "babel src -x '.ts' -d dist/node --no-comments",
"jsdoc": "jsdoc -d docs dist/node/index.js",
"jasmine": "ts-node node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ar124official2019/toggle-group-dev.git"
},
"keywords": [
"toggle",
"switch",
"on-off",
"open-close",
"data-structure"
],
"author": "Ahmad Raza",
"license": "MIT",
"bugs": {
"url": "https://github.com/ar124official2019/toggle-group-dev/issues"
},
"homepage": "https://github.com/ar124official2019/toggle-group-dev#readme"
}