-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
101 lines (101 loc) · 3.19 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "react-lightweight-tooltip",
"description": "A lightweight React.js tooltip component",
"author": "Michal Cumpl",
"user": "mcumpl",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server",
"test": "karma start",
"test:tdd": "npm run test -- --auto-watch --no-single-run",
"test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
"gh-pages": "webpack",
"gh-pages:deploy": "gh-pages -d gh-pages",
"gh-pages:stats": "webpack --profile --json > stats.json",
"dist": "webpack",
"dist:min": "webpack",
"dist:modules": "babel ./src --out-dir ./dist-modules",
"pretest": "npm run test:lint",
"preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist:modules",
"postpublish": "npm run gh-pages && npm run gh-pages:deploy",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"typings": "./index.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "~6.11.5",
"babel-plugin-transform-es2015-destructuring": "~6.9.0",
"babel-plugin-transform-object-rest-spread": "~6.8.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.11.5",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.9",
"css-loader": "^0.23.1",
"eslint": "^3.2.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"git-prepush-hook": "^1.0.1",
"highlight.js": "^9.4.0",
"html-webpack-plugin": "^2.21.0",
"html-webpack-remark-plugin": "^0.1.0",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^1.0.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.7.0",
"mocha": "^3.0.0",
"phantomjs-polyfill": "0.0.2",
"phantomjs-prebuilt": "^2.1.9",
"prop-types": "^15.5.0",
"purecss": "^0.6.0",
"react": "^15.2.1",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-ghfork": "^0.3.3",
"style-loader": "^0.13.1",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mcumpl/react-lightweight-tooltip.git"
},
"homepage": "https://mcumpl.github.io/react-lightweight-tooltip/",
"bugs": {
"url": "https://github.com/mcumpl/react-lightweight-tooltip/issues"
},
"keywords": [
"react",
"reactjs",
"tooltip"
],
"license": "MIT",
"pre-push": [
"test",
"test:lint"
]
}