This repository has been archived by the owner on Oct 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.7 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
{
"name": "react-pokemon-gif",
"version": "1.0.1",
"description": "React component for animated pokemon sprites.",
"license": "MIT",
"author": "Jack R. Zhang <[email protected]>",
"keywords": [
"react",
"pokemon",
"gif",
"sprites",
"animated"
],
"main": "build/react-pokemon-gif",
"repository": {
"type": "git",
"url": "https://github.com/jackrzhang/react-pokemon-gif"
},
"bugs": {
"url": "https://github.com/jackrzhang/react-pokemon-gif/issues"
},
"files": [
"*.md",
"LICENSE",
"lib",
"build"
],
"scripts": {
"start": "mkdir -p build && ./node_modules/.bin/babel ./lib --presets es2015,stage-0,react --out-dir ./build --watch",
"build": "mkdir -p build && ./node_modules/.bin/babel ./lib --presets es2015,stage-0,react --out-dir ./build",
"prepublish": "npm run build",
"lint": "./node_modules/.bin/eslint lib test",
"test": "./node_modules/.bin/mocha --reporter spec .specsetup.js test/**/*.spec.js"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.0",
"mocha": "^3.0.2",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.5",
"webpack": "^1.13.1"
},
"dependencies": {
"pokemon-gif": "^1.0.12"
}
}