-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 968 Bytes
/
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
{
"name": "@jeanlauliac/upd",
"version": "0.6.4",
"description": "Update files, fast.",
"author": "Jean Lauliac <[email protected]>",
"license": "MIT",
"bin": {
"upd": "bootstrap/upd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeanlauliac/upd.git"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"chalk": "^1.1.3",
"clang-format": "^1.1.0",
"json5": "^1.0.1"
},
"devDependencies": {
"faucet": "^0.0.1",
"flow-bin": "^0.56.0",
"jest": "^21.2.1",
"rimraf": "^2.6.1",
"tap-mocha-reporter": "^3.0.0"
},
"scripts": {
"test": "./test.sh",
"preinstall": "./preinstall.sh",
"format": "clang-format -i $(find src -name *.cpp -or -name *.h -or -name *.cppt)"
},
"files": [
"bootstrap/upd_darwin",
"bootstrap/upd_linux",
"preinstall.sh"
],
"jest": {
"roots": [
"gen/tools"
]
}
}