-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "reactionpack",
"version": "0.3.0",
"description": "ReactionPack",
"author": "Tim Santeford <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsantef/reactionpack.git"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib coverage",
"build": "BABEL_ENV=commonjs babel src --out-dir lib --ignore \"**/*.spec.js\"",
"test": "jest",
"watch": "jest --watch --verbose",
"cover": "jest --coverage",
"lint": "eslint src --quiet",
"lint-fix": "eslint src --fix",
"prepublish": "npm run clean && npm run test && npm run build"
},
"pre-push": [
"lint",
"test"
],
"dependencies": {
"lodash": "^4.17.4"
},
"peerDependencies": {
"react": ">= 0.13.0 <16.0.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"coveralls": "^2.11.16",
"eslint": "^3.16.1",
"eslint-config-appnexus": "^1.6.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-lodash": "^2.3.5",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2",
"pre-push": "^0.1.1",
"react": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.1"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"testPathIgnorePatterns": [
"example"
]
}
}