forked from facebookarchive/node-haste
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "node-haste",
"version": "2.12.0",
"repository": {
"type": "git",
"url": "https://github.com/facebook/node-haste.git"
},
"license": "BSD-3-Clause",
"main": "lib/index.js",
"dependencies": {
"absolute-path": "^0.0.0",
"debug": "^2.2.0",
"denodeify": "^1.2.1",
"graceful-fs": "^4.1.3",
"json-stable-stringify": "^1.0.1",
"sane": "^1.3.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-jest": "^9.0.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-types": "^6.5.2",
"eslint": "^1.10.3",
"fbjs-scripts": "^0.5.0",
"jest-cli": "^0.9.2"
},
"jest": {
"rootDir": "./src",
"unmockedModulePathPatterns": [
"denodeify",
"fastpath"
]
},
"scripts": {
"build": "rm -rf lib/ && babel --out-dir=lib src && cp -r lib/__mocks__/ mocks",
"watch": "babel --watch --out-dir=lib src",
"lint": "eslint .",
"prepublish": "npm test && npm run build",
"test": "npm run lint && jest"
}
}