-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "react-input-auto-tab",
"version": "0.0.5",
"description": "React Input Field with Auto tabbing functionality component.",
"main": "dist/react-input-auto-tab",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"enzyme": "^2.4.1",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"istanbul": "^0.4.5",
"jsdom": "^9.7.1",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"sinon": "^1.17.6",
"webpack": "^1.13.2"
},
"scripts": {
"clear": "rm -rf dist && mkdir dist",
"build:develop": "cross-env NODE_ENV=development webpack src/Autotab.js dist/react-input-auto-tab.js",
"build:production": "cross-env NODE_ENV=production webpack src/Autotab.js dist/react-input-auto-tab.min.js",
"build:publish": "npm run build:develop && npm run build:production",
"test": "./node_modules/.bin/mocha test/.setup.js test/**/*-test.js --reporter spec",
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayoola-solomon/react-auto-tab.git"
},
"keywords": [
"React",
"Component",
"Input",
"Tab"
],
"author": "Solomon Ayoola <[email protected]> (https://branded.me/ayoola-solomon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayoola-solomon/react-auto-tab/issues"
},
"homepage": "https://github.com/ayoola-solomon/react-auto-tab#readme"
}