-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "react-smooth-range-input",
"version": "0.3.1",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"build": "rollup -c",
"watch": "tsc --watch",
"release": "npm version",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"postrelease": "yarn publish && git push --follow-tags",
"test": "jest --coverage",
"testw": "yarn test -- --watchAll",
"prepublish": "yarn test && yarn run clean && yarn build"
},
"repository": "https://github.com/bluebill1049/react-simple-input-range.git",
"author": "<[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.10.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^24.0.6",
"@types/react": "^16.8.4",
"@types/react-test-renderer": "^16.8.1",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"jest": "^24.1.0",
"npm-run-all": "^4.1.5",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.8.3",
"rimraf": "^2.6.3",
"rollup": "^1.2.2",
"rollup-plugin-typescript2": "^0.19.2",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333",
"uglify-es": "^3.3.9"
},
"dependencies": {
"react-flip-numbers": "3.0.5",
"react-simple-animate": "^3.3.12"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-simple-animate": "^3.0.2"
}
}