-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 KB
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
{
"name": "react-typeform",
"version": "1.0.3",
"description": "Fullscreen form or typeform in React",
"main": "build/index.js",
"keywords": [
"fullscreen",
"form",
"typeform",
"fullscreen-form",
"react"
],
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register --recursive",
"test-cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover --report html --report text node_modules/.bin/_mocha",
"build": "rm -rf build && ./node_modules/.bin/babel src --out-dir build",
"clean": "rm -rf build",
"lint": "eslint src test",
"watch": "npm-watch build"
},
"dependencies": {
"react": "^16.2.0",
"react-dom": "^15.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.3.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"isparta": "^4.0.0",
"mocha": "^5.2.0",
"npm-watch": "^0.3.0",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2"
},
"pre-commit": [
"lint",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mohithg/react-typeform.git"
},
"watch": {
"build": {
"patterns": [
"src",
"test"
],
"extensions": "js,jsx",
"quiet": true
}
},
"bugs": {
"url": "https://github.com/mohithg/react-typeform.git/issues"
},
"homepage": "https://github.com/mohithg/react-typeform.git#readme",
"author": "Mohith G <> (https://github.com/mohithg)",
"contributors": [
"Max Clayton Clowes <maxcc@me.com> (https://github.com/mcclowes)"
],
"license": "MIT"
}