-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "react-ladda",
"version": "6.0.0",
"description": "React wrapper for Ladda buttons",
"main": "dist/index.js",
"scripts": {
"watch": "./node_modules/.bin/mocha -w --watch-extensions=jsx test/.setup.js test/**/*-test.jsx",
"test": "./node_modules/.bin/mocha test/.setup.js test/**/*-test.jsx",
"lint": "./node_modules/.bin/eslint src/**/* test/**/*",
"build": "npm run lint && ./node_modules/.bin/babel src --out-dir dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsdir/react-ladda.git"
},
"keywords": [
"react",
"component",
"boilerplate"
],
"author": "Jason Sommer",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsdir/react-ladda/issues"
},
"homepage": "https://github.com/jsdir/react-ladda#readme",
"dependencies": {
"ladda": "^1.0.0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.4.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.5.0",
"chai-enzyme": "^1.0.0-beta.0",
"cheerio": "^1.0.0-rc.2",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.7.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jsdom": "^8.0.1",
"mocha": "^2.4.5",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.2.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}