-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.45 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
56
57
58
59
60
61
62
{
"name": "easy-pie-chart-typescript",
"version": "0.0.4",
"description": "Rework of the Easy-Pie-Chart with Typescript",
"main": "dist/easyPieChart.js",
"private": false,
"scripts": {
"test": "jest",
"start": "parcel index.html",
"build": "npm run clean && parcel build src/easyPieChart.ts",
"clean": "rm -rf dist"
},
"keywords": [
"visualisation",
"easy-pie",
"graph",
"circular progress",
"precent",
"progress bar"
],
"author": "John Nguyen <johnyscrazy@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
},
{
"type": "GPL",
"url": "http://www.opensource.org/licenses/gpl-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/jolo-dev/easypiechart-v2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/jest": "^24.0.25",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"ts-jest": "^24.3.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4"
},
"dependencies": {},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}