forked from dmitrymorozoff/react-dashed-progress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.13 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
63
{
"name": "react-dashed-progress",
"version": "1.0.0",
"description": "A React.js component to draw circular progress bar",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dmitrymorozoff/react-dashed-progress"
},
"scripts": {
"dev": "parcel --no-cache example/index.html",
"build": "npm run test && npm run lint && npm run clean && webpack --mode production && parcel build --no-cache --public-url ./ example/index.html",
"prettier": "prettier --config .prettierrc.json --write src/**/*.ts",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'tests/**/*.spec.ts'",
"test:watch": "jest --watch",
"test": "jest",
"clean": "rimraf lib && rimraf dist"
},
"keywords": [
"react-progress",
"react-progressbar",
"progress",
"progressbar",
"round-progress",
"circle-progressbar",
"circle-progress"
],
"author": "Morozov Dmitry <dimemorozovy@yandex.ru>",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/enzyme-adapter-react-16": "^1.0.3",
"@types/enzyme-to-json": "^1.5.2",
"@types/jest": "^23.3.1",
"@types/react": "^16.4.11",
"@types/react-dom": "^16.0.7",
"@types/react-syntax-highlighter": "0.0.6",
"enzyme": "^3.5.0",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.6.0",
"parcel-bundler": "^1.9.7",
"prettier": "^1.14.2",
"react-addons-test-utils": "^15.5.1",
"react-syntax-highlighter": "^9.0.0",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.1.4",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-react": "^3.6.0",
"typescript": "^3.1.3",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}