This repository has been archived by the owner on May 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (55 loc) · 1.49 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
{
"name": "react-attrs-filter",
"version": "0.1.2",
"description": "Filter React props",
"keywords": [ "react" ],
"homepage": "https://github.com/deepsweet/react-attrs-filter",
"repository": "deepsweet/react-attrs-filter",
"contributors": [
"Kir Belevich <kir@soulshine.in> (https://github.com/deepsweet)",
"Denis Koltsov <iam@mistadikay.com> (https://github.com/mistadikay)"
],
"main": "build/index.js",
"files": [
"build/",
"data/",
"LICENSE"
],
"dependencies": {
"babel-runtime": "5.8.x"
},
"devDependencies": {
"husky": "0.9.x",
"rimraf": "2.4.x",
"tape": "4.2.x",
"tap-spec": "4.1.x",
"isparta": "3.0.x",
"coveralls": "2.11.x",
"eslint": "1.2.x",
"babel-eslint": "4.1.x",
"eslint-plugin-babel": "2.1.x",
"babel": "5.8.x",
"babel-core": "5.8.x"
},
"scripts": {
"prebuild": "rimraf build/",
"build": "babel lib/ -d build/",
"dev": "npm run build -- -w",
"lint": "eslint lib/ test/",
"pretest": "npm run lint",
"test": "babel-node test/lib/*.js | tap-spec",
"precoverage": "rimraf coverage/",
"coverage": "babel-node ./node_modules/.bin/isparta cover test/lib/*.js | tap-spec",
"precoveralls": "npm run coverage",
"coveralls": "coveralls < coverage/lcov.info",
"pretravis": "npm run lint",
"travis": "npm run coveralls",
"prepush": "npm test",
"prepublish": "npm run build"
},
"engines": {
"node": ">=0.12.0",
"npm": ">=2.7.0"
},
"license": "MIT"
}