UNPKG

3.08 kBJSONView Raw
1{
2 "name": "react-taggy",
3 "description": "A basic React component that displays entities for a given block of text.",
4 "author": "John Munson",
5 "user": "johncmunson",
6 "version": "0.0.4",
7 "scripts": {
8 "start": "webpack-dev-server",
9 "test": "jest",
10 "test:coverage": "jest --coverage",
11 "test:watch": "jest --watch",
12 "test:lint": "eslint . --ext .js --ext .jsx --ignore-path .gitignore --ignore-pattern dist --cache",
13 "gh-pages": "webpack",
14 "gh-pages:deploy": "gh-pages -d gh-pages",
15 "gh-pages:stats": "webpack --profile --json > stats.json",
16 "dist": "webpack",
17 "dist:min": "webpack",
18 "dist:modules": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
19 "preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
20 "prepublish": "npm run dist:modules",
21 "postpublish": "npm run gh-pages && npm run gh-pages:deploy",
22 "postinstall": "node lib/post_install.js"
23 },
24 "main": "dist-modules",
25 "module": "src",
26 "jsnext:main": "src",
27 "devDependencies": {
28 "babel-cli": "^6.18.0",
29 "babel-core": "^6.21.0",
30 "babel-eslint": "^7.1.1",
31 "babel-jest": "^18.0.0",
32 "babel-loader": "^6.2.10",
33 "babel-plugin-transform-react-remove-prop-types": "^0.2.11",
34 "babel-preset-es2015": "^6.18.0",
35 "babel-preset-react": "^6.16.0",
36 "babel-preset-react-hmre": "^1.1.1",
37 "catalog": "^2.4.7",
38 "chai": "^3.5.0",
39 "clean-webpack-plugin": "^0.1.14",
40 "css-loader": "^0.26.1",
41 "eslint": "^3.12.2",
42 "eslint-config-airbnb": "^13.0.0",
43 "eslint-loader": "^1.6.1",
44 "eslint-plugin-import": "^2.2.0",
45 "eslint-plugin-jsx-a11y": "^2.2.3",
46 "eslint-plugin-react": "^6.8.0",
47 "extract-text-webpack-plugin": "^1.0.1",
48 "file-loader": "^0.9.0",
49 "gh-pages": "^0.12.0",
50 "git-prepush-hook": "^1.0.1",
51 "html-webpack-plugin": "^2.25.0",
52 "html-webpack-template": "^6.0.0",
53 "jest": "^18.1.0",
54 "json-loader": "^0.5.4",
55 "purecss": "^0.6.1",
56 "raw-loader": "^0.5.1",
57 "react": "^15.4.1",
58 "react-addons-test-utils": "^15.4.1",
59 "react-dom": "^15.4.1",
60 "react-github-corner": "^0.3.0",
61 "rimraf": "^2.5.4",
62 "style-loader": "^0.13.1",
63 "sync-exec": "^0.6.2",
64 "system-bell-webpack-plugin": "^1.0.0",
65 "url-loader": "^0.5.7",
66 "webpack": "^1.14.0",
67 "webpack-dev-server": "^1.16.2",
68 "webpack-merge": "^2.0.0"
69 },
70 "peerDependencies": {
71 "react": ">= 0.11.2 < 16.0.0"
72 },
73 "repository": {
74 "type": "git",
75 "url": "https://github.com/survivejs/react-component-boilerplate.git"
76 },
77 "homepage": "https://survivejs.github.io/react-component-boilerplate/",
78 "bugs": {
79 "url": "https://github.com/survivejs/react-component-boilerplate/issues"
80 },
81 "jest": {
82 "collectCoverage": true,
83 "moduleFileExtensions": [
84 "js",
85 "jsx"
86 ],
87 "moduleDirectories": [
88 "node_modules",
89 "packages"
90 ]
91 },
92 "keywords": [
93 "react",
94 "reactjs",
95 "boilerplate"
96 ],
97 "license": "MIT",
98 "pre-push": [
99 "test"
100 ]
101}