-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.56 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.56 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
{
"name": "meta-props",
"version": "0.1.2",
"description": "Page configuration via meta tags.",
"main": "lib/index.js",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=lcov ava",
"prepublish": "npm run build",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9technology/meta-props.git"
},
"keywords": [
"config",
"props",
"property",
"meta"
],
"author": "9Technology <opensource@nine.com.au>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/9technology/meta-props/issues"
},
"homepage": "https://github.com/9technology/meta-props#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-plugin-istanbul": "^2.0.3",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"del": "^2.2.2",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jsdom": "^9.8.3",
"nyc": "^8.4.0",
"proxyquire": "^1.7.10",
"run-sequence": "^1.2.2",
"sinon": "^1.17.6"
},
"dependencies": {
"camelcase": "^3.0.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit",
"files": [
"test/**/*.spec.js"
]
},
"nyc": {
"all": true,
"sourceMap": false,
"instrument": false
}
}