-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.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
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
{
"name": "r-factor",
"version": "0.0.1",
"description": "React refactoring tools for Sublime 3",
"main": "index.js",
"author": {
"name": "Kamil Mielnik",
"email": "[email protected]",
"url": "http://kamilmielnik.com/"
},
"license": "Proprietary",
"engines": {
"node": "^8.11.3",
"npm": "^5.6.0"
},
"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",
"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": {
"testURL": "http://localhost",
"moduleFileExtensions": [
"js",
"json"
],
"moduleDirectories": [
"node_modules"
],
"testMatch": [
"**/?(*.)(spec|test).js"
]
},
"dependencies": {
"@babel/generator": "7.0.0-beta.54",
"@babel/parser": "7.0.0-beta.54",
"@babel/traverse": "7.0.0-beta.54",
"@babel/types": "7.0.0-beta.54",
"babel-eslint": "8.2.6",
"eslint": "^5.1.0",
"eslint-plugin-react": "^7.10.0",
"get-stdin": "6.0.0",
"lodash.difference": "4.5.0",
"recast": "git+https://github.com/yuriyyakym/recast.git#newest",
"stable": "0.1.8",
"yargs": "12.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.54",
"@babel/preset-env": "^7.0.0-beta.54",
"babel-loader": "^8.0.0-beta.4",
"better-npm-run": "^0.1.0",
"jest": "23.4.1",
"webpack": "^4.16.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8"
}
}