-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.05 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
102
103
104
105
106
107
{
"name": "react-livephoto",
"description": "LivePhoto React Component",
"author": "Maxime Heckel",
"user": "MaximeHeckel",
"version": "0.5.1",
"scripts": {
"start": "webpack-dev-server",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"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": "rimraf ./dist-modules && babel ./src --out-dir ./dist-modules",
"preversion": "npm run test && npm run dist && npm run dist:min && git commit --allow-empty -am \"Update dist\"",
"prepublish": "npm run dist:modules",
"postinstall": "node lib/post_install.js"
},
"main": "dist-modules",
"module": "src",
"jsnext:main": "src",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-react-remove-prop-types": "^0.2.11",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"catalog": "^2.4.7",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.14",
"css-loader": "^0.26.1",
"enzyme": "^2.8.2",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"git-prepush-hook": "^1.0.1",
"html-webpack-plugin": "^2.25.0",
"html-webpack-template": "^6.0.0",
"jest": "^18.1.0",
"json-loader": "^0.5.4",
"purecss": "^0.6.1",
"raw-loader": "^0.5.1",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"react-github-corner": "^0.3.0",
"react-test-renderer": "^15.5.4",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"sync-exec": "^0.6.2",
"system-bell-webpack-plugin": "^1.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"webpack-merge": "^2.0.0"
},
"peerDependencies": {
"react": ">= 0.11.2 < 16.0.0",
"livephotoskit": "^1.4.8"
},
"repository": {
"type": "git",
"url": "https://github.com/MaximeHeckel/react-livephoto.git"
},
"homepage": "https://livephoto.maximeheckel.com",
"bugs": {
"url": "https://github.com/MaximeHeckel/react-livephoto/issues"
},
"jest": {
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"packages"
]
},
"keywords": [
"react",
"reactjs",
"boilerplate"
],
"license": "MIT",
"pre-push": [
"test"
],
"dependencies": {
"livephotoskit": "^1.4.8"
}
}