-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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": "@chaosgroup/react-multi-select",
"version": "0.9.4",
"description": "Multi selection component",
"ts:main": "./lib/index.tsx",
"main": "dist/es6.js",
"repository": "https://github.com/ChaosGroup/react-multi-select.git",
"author": "Konstantin Simeonov <konstantin.simeonov@chaosgroup.com>",
"license": "MIT",
"scripts": {
"init-hooks": "ts-node init-hooks.ts",
"build": "ts-node fuse.ts",
"test": "tsc --p ./tsconfig.test.json && ava",
"test:coverage": "tsc --p ./tsconfig.test.json && nyc ava",
"lint": "tslint lib/*.ts lib/**/*.ts -p . --config tslint.json",
"coverage:html": "nyc report --reporter=html",
"coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf ./dump ./dist",
"examples": "yarn && yarn build && cd ./examples && yarn && yarn storybook"
},
"devDependencies": {
"@types/enzyme": "3.1.8",
"@types/enzyme-adapter-react-16": "1.0.1",
"@types/jsdom": "12.2.3",
"@types/react": ">= 15.4.2",
"@types/react-dom": ">= 15.4.2",
"@types/sinon": "4.1.3",
"ava": "1.0.0-beta.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"fast-check": "1.10.0",
"fuse-box": "3.0.2",
"jsdom": "11.10.0",
"coveralls": "^3.0.2",
"nyc": "11.8.0",
"prop-types": ">= 15.6.0",
"react": ">= 15.4.2",
"react-dom": ">= 15.4.2",
"sinon": "5.0.7",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-react": "3.6.0",
"typescript": "3.1.3",
"uglify-es": "3.3.9"
},
"peerDependencies": {
"prop-types": ">= 15.6.0",
"react": ">= 15.4.2"
},
"dependencies": {}
}