-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.91 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
{
"name": "react-arithmetic",
"version": "0.0.1",
"description": "arithmetic in react",
"main": "lib/",
"browser": "lib/",
"module": "src/",
"scripts": {
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --require test/setup test/*.test.js",
"test:debug": "mocha --inspect-brk --require test/setup test/*.test.js",
"prepublish": "mkdir -p lib && babel ./src/ -d ./lib",
"build": "npm run lint && npm run prepublish",
"lint": "eslint-godaddy-react ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SivanMehta/react-calculator.git"
},
"keywords": [
"arithmetic",
"react"
],
"author": "Sivan Mehta",
"license": "MIT",
"bugs": {
"url": "https://github.com/SivanMehta/react-arithmetic/issues"
},
"homepage": "https://github.com/SivanMehta/react-arithmetic",
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"assume": "^2.0.1",
"assume-react": "^0.2.0",
"assume-sinon": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.17.0",
"eslint-config-godaddy-react": "^2.2.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-react": "^7.6.1",
"intl": "~1.2.3",
"jsdom": "^9.5.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"object-assign": "~4.1.0",
"prop-types": "^15.6.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-intl": "^2.4.0",
"sinon": "^6.0.0"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
"babel-preset-env",
"babel-preset-react"
]
}
}