-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "dom-locky",
"version": "1.0.1",
"description": "🙊🙈🙉 - the best way to scope a scroll, or literally any other event.",
"main": "dist/index.js",
"unpkg": "umd/index.js",
"types": "types/index.d.ts",
"scripts": {
"build": "rm -Rf ./dist && babel src -d dist",
"umd": "browserify dist/index.js --standalone locky -o umd/index.js",
"prepublish": "npm run build && npm run umd",
"test": "echo \"no tests\"",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"size": "npm run build && size-limit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thearnica/dom-locky.git"
},
"keywords": [
"dom",
"lock",
"event",
"isolation"
],
"author": "theArnica <thearnica@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thearnica/dom-locky/issues"
},
"devDependencies": {
"@storybook/addon-actions": "^3.3.6",
"@storybook/addon-links": "^3.3.6",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "^6.24.1",
"browserify": "^16.2.2",
"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": "^23.0.0",
"jsdom": "11.11.0",
"jsdom-global": "3.0.2",
"react": "^16.3.2",
"react-dom": "^16.3.1",
"storybook": "^1.0.0",
"size-limit": "^0.18.1"
},
"homepage": "https://github.com/thearnica/dom-locky#readme"
}