-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
96 lines (96 loc) · 2.46 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": "bolt",
"version": "0.24.10",
"main": "index.js",
"author": "James Kyle <[email protected]>",
"license": "MIT",
"repository": "https://github.com/boltpkg/bolt",
"bin": {
"bolt": "./bin.js"
},
"files": [
"dist",
"index.js",
"bin.js"
],
"scripts": {
"clean": "rm -rf dist",
"flow": "flow status",
"test": "jest --coverage",
"whichnode": "node --version",
"format": "prettier --write src/**/*.js",
"build:legacy": "cross-env BABEL_ENV=legacy babel src -d dist/legacy",
"build:modern": "cross-env BABEL_ENV=modern babel src -d dist/modern",
"build": "yarn run clean && yarn build:legacy && yarn build:modern",
"prepublish": "yarn build",
"precommit": "lint-staged"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"cross-env": "^5.1.3",
"fixturez": "^1.1.0",
"flow-bin": "^0.68.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-expect-contain-deep": "^1.0.1",
"lint-staged": "^4.1.3",
"mode-to-permissions": "^0.0.2",
"path-exists": "^3.0.0",
"prettier": "~1.18.2"
},
"dependencies": {
"array-includes": "^3.0.3",
"babel-runtime": "^6.25.0",
"chalk": "^2.0.1",
"chunkd": "^1.0.0",
"ci-parallel-vars": "^1.0.0",
"clean-stack": "^1.3.0",
"cmd-shim": "^2.0.2",
"cross-spawn": "^5.1.0",
"detect-indent": "^5.0.0",
"detect-newline": "2.1.0",
"find-up": "^2.1.0",
"globby": "^6.1.0",
"inquirer": "7.3.3",
"is-glob": "^4.0.0",
"make-dir": "^1.0.0",
"meow": "^7.1.0",
"minimatch": "^3.0.4",
"multimatch": "^2.1.0",
"p-limit": "^1.1.0",
"parse-json": "^2.2.0",
"path-is-inside": "^1.0.2",
"pkg-up": "^2.0.0",
"project-bin-path": "^1.1.0",
"read-cmd-shim": "^1.0.1",
"read-pkg": "^2.0.0",
"rimraf": "^2.6.1",
"semver": "^5.4.1",
"slash": "^1.0.0",
"sort-object": "^3.0.2",
"task-graph-runner": "^1.0.1",
"temp-write": "^3.4.0",
"typeable-promisify": "^2.0.1",
"yarn": "^1.9.4"
},
"jest": {
"resetMocks": true,
"testMatch": [
"<rootDir>/src/**/__tests__/*.js"
]
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
}
}