-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1010 Bytes
/
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
{
"name": "light-spinner",
"version": "1.0.4",
"description": "light-spinner",
"keywords": [
"spinner",
"light",
"minimal",
"cli",
"no-dependencies"
],
"repository": {
"type": "git",
"url": "https://github.com/echosoar/light-spinner.git"
},
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"files": ["dist"],
"scripts": {
"dev": "tsc --watch",
"build": "tslint -c tslint.json 'src/**/*.ts' & tsc --build",
"test": "jest",
"coverage": "jest --coverage",
"minify": "uglifyjs --compress --mangle --output index.min.js -- ./dist/index.js"
},
"devDependencies": {
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.0",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
},
"jest": {
"testTimeout": 1000000,
"preset": "ts-jest"
},
"dependencies": {},
"author": "echosoar",
"license": "MIT"
}