-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
96 lines (96 loc) · 2.45 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
93
94
95
96
{
"name": "react-pipeline",
"version": "14.7.1",
"description": "A task execution pipeline described in JSX",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run lint",
"pretest": "npm run lint",
"test": "NODE_ENV=test jest",
"doc": "esdoc -c .esdoc.json",
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"clean": "rimraf lib coverage doc",
"lint": "eslint src/*.js src/**/*.js spec/*.js spec/**/*.js"
},
"engines": {
"node": ">=5"
},
"author": {
"name": "Michael Diolosa",
"email": "[email protected]",
"url": "http://twitter.com/mbrio"
},
"jest": {
"collectCoverage": true,
"collectCoverageOnlyFrom": {
"<rootDir>/src/ReactPipeline.js": true,
"<rootDir>/src/ReactPipelineRenderingTransaction.js": true,
"<rootDir>/src/startTasks.js": true,
"<rootDir>/src/Task.js": true
},
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"preprocessCachingDisabled": true,
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "spec/unit",
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
],
"modulePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/",
"<rootDir>/doc/"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/babel-polyfill",
"<rootDir>/node_modules/babel-runtime",
"<rootDir>/node_modules/core-js",
"<rootDir>/src"
],
"verbose": true
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/mbrio/react-pipeline"
},
"keywords": [
"react",
"automation",
"pipeline",
"task",
"async"
],
"dependencies": {
"fbjs": "^0.7.2",
"react": "^0.14.7"
},
"devDependencies": {
"babel-cli": "^6.6.0",
"babel-core": "^6.7.2",
"babel-eslint": "^5.0.0",
"babel-jest": "^9.0.3",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"esdoc": "^0.4.5",
"esdoc-es7-plugin": "0.0.3",
"eslint": "^2.3.0",
"eslint-plugin-react": "^4.1.0",
"estraverse-fb": "^1.3.1",
"jest-cli": "^0.9.2",
"rimraf": "^2.5.2"
}
}