This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
92 lines (92 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "react-foundation",
"version": "0.9.7",
"description": "Foundation as React components.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"files": [
"lib",
"src",
".npmignore",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"compile": "babel --loose es6.modules -d lib/ src/",
"lint": "eslint src",
"precommit": "yarn lint && yarn test",
"prepublishOnly": "yarn lint && yarn compile",
"test": "NODE_ENV=test mocha --require babel-core/register --require test/index.js --recursive --colors",
"test:cover": "istanbul cover _mocha -- --require babel-core/register --require test/index.js --recursive",
"test:watch": "yarn test -- --watch --reporter min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digiaonline/react-foundation.git"
},
"keywords": [
"badge",
"button",
"callout",
"video",
"grid",
"icon",
"label",
"media-object",
"menu",
"progress-bar",
"responsive",
"switch",
"top-bar",
"react",
"foundation",
"react-component"
],
"author": "Christoffer Niska <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digiaonline/react-foundation/issues"
},
"homepage": "https://github.com/digiaonline/react-foundation#readme",
"dependencies": {
"classnames": "^2.2.6",
"fbjs": "^3.0.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.2",
"babel-istanbul": "^0.12.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.8.0",
"chai-jsx": "^1.0.1",
"cheerio": "^0.20.0",
"codeclimate-test-reporter": "^0.5.1",
"enzyme": "^2.1.0",
"eslint": "^6.0.1",
"eslint-plugin-react": "^7.14.2",
"estraverse-fb": "^1.3.2",
"expect": "^1.15.1",
"foundation-sites": "^6.5.3",
"husky": "^0.13.4",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^8.1.0",
"mocha": "^6.1.4",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"react-dom": "^0.14.7",
"sinon": "^1.17.3"
},
"babel": {
"presets": [
"stage-2",
"es2015",
"react"
]
}
}