-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) Β· 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-locky",
"version": "1.5.7",
"description": "Lock Loki",
"main": "dist/cjs/index.js",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build:cjs": "NODE_ENV=cjs babel src -d dist/cjs",
"build:es5": "NODE_ENV=es2015 babel src -d dist/es2015",
"build": "rm -Rf ./dist && yarn build:es5 && yarn build:cjs",
"test": "NODE_ENV=cjs jest",
"prepublish": "npm run build",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"storybook": "NODE_ENV=es2015 start-storybook -p 6006",
"build-storybook": "build-storybook",
"size": "npm run build && size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theKashey/react-locky.git"
},
"keywords": [
"react",
"lock",
"event",
"isolation"
],
"jest": {
"verbose": true,
"testURL": "http://localhost/"
},
"author": "theKashey <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/theKashey/react-locky/issues"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.10",
"@storybook/addon-links": "^5.0.10",
"@storybook/cli": "^5.0.10",
"@storybook/react": "^5.0.10",
"@types/react": "^16.3.13",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"babel-plugin-transform-react-remove-prop-types": "^0.4.20",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.3.0",
"jest": "^24.7.1",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"react": "^16.3.2",
"react-dom": "^16.4.1",
"react-test-renderer": "^16.4.0",
"regenerator-runtime": "^0.13.1",
"size-limit": "^1.0.1",
"storybook": "^1.0.0"
},
"homepage": "https://github.com/theKashey/react-locky#readme",
"dependencies": {
"@babel/runtime": "^7.1.5",
"prop-types": "^15.6.2"
}
}