-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.6 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
{
"name": "pattern-figure-image",
"version": "0.0.1",
"description": "A system-agnostic HTML pattern for a figure element containing an image",
"main": "index.js",
"scripts": {
"pretest": "npm run lint",
"ava": "ava",
"lint": "gulp lint",
"nyc": "nyc --all npm run ava",
"test": "npm run nyc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pattern-library/pattern-figure-image.git"
},
"keywords": [
"pattern-html",
"pattern-library"
],
"author": "Scott Nath",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/pattern-library/pattern-figure-image/issues"
},
"homepage": "https://github.com/pattern-library/pattern-figure-image#readme",
"devDependencies": {
"ava": "^0.19.1",
"babel": "6.5.2",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-register": "6.9.0",
"enzyme": "^2.8.2",
"eslint-plugin-ava": "^4.2.0",
"jsdom": "^10.1.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.4",
"nunjucks": "^3.0.0",
"nyc": "^10.3.2",
"punchcard-runner": "^2.1.3",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4"
},
"dependencies": {
"nunjucks-add-attrs-filter": "0.0.1",
"prop-types": "^15.5.8",
"react": "^15.5.4"
},
"nyc": {
"exclude": [
"tests/**/*",
"Gulpfile.js",
"coverage"
],
"extension": [
".jsx"
]
},
"ava": {
"files": [
"tests/*.js"
],
"failFast": false,
"tap": true,
"babel": "inherit",
"require": [
"./tests/helpers/setup-test-env.js"
]
}
}