-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.28 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
{
"name": "r-factor",
"version": "1.0.1",
"description": "React & Redux Refactoring Tools",
"license": "MIT",
"main": "dist/index.js",
"bin": {
"r-factor": "dist/cli.js"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limesquid/r-factor.git"
},
"bugs": {
"url": "https://github.com/limesquid/r-factor/issues"
},
"homepage": "https://r-factor.org",
"scripts": {
"analyze-bundle": "better-npm-run analyze-bundle",
"build": "better-npm-run build",
"build:dev": "better-npm-run build:dev",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"prerelease": "npm run lint && npm run test && npm run build",
"release": "np",
"test": "jest --no-cache --coverage",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --no-cache --watch",
"test:watch": "jest --no-cache --watch"
},
"betterScripts": {
"analyze-bundle": {
"command": "webpack",
"env": {
"ANALYZE_BUNDLE": "true",
"NODE_ENV": "production"
}
},
"build": {
"command": "webpack",
"env": {
"NODE_ENV": "production"
}
},
"build:dev": {
"command": "webpack",
"env": {
"NODE_ENV": "development"
}
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json"
],
"moduleDirectories": [
"node_modules"
],
"testMatch": [
"**/?(*.)(spec|test).js"
]
},
"dependencies": {
"@babel/generator": "7.0.0",
"@babel/parser": "7.0.0",
"@babel/traverse": "7.0.0",
"@babel/types": "7.0.0",
"babel-eslint": "9.0.0",
"eslint": "^5.7.0",
"eslint-plugin-react": "7.10.0",
"get-stdin": "6.0.0",
"lodash.difference": "4.5.0",
"recast": "git+https://github.com/limesquid/recast.git#newest",
"stable": "0.1.8",
"xml2js": "^0.4.19",
"yargs": "12.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"better-npm-run": "^0.1.1",
"jest": "23.5.0",
"np": "^7.6.2",
"string-replace-webpack-plugin": "^0.1.3",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0"
}
}