-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "vim-driver",
"version": "1.0.1",
"author": "Sam Howie <[email protected]>",
"main": "./dist",
"files": [
"LICENSE",
"dist"
],
"license": "MIT",
"devDependencies": {
"@babel/node": "^7.0.0-beta.49",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"flow-bin": "^0.71.0",
"jest": "^22.4.3",
"jest-silent-reporter": "^0.0.5",
"jsesc": "^2.5.1",
"prettier": "1.12.1"
},
"scripts": {
"test": "LOG_LEVEL=error jest",
"build": "babel src/ -d dist/ --ignore **/__tests__/*.js && cp src/*.vim dist/",
"prepublish": "yarn run build",
"example": "babel-node examples/index.js",
"example:0": "babel-node examples/hello_vim_driver/main.js",
"example:1": "babel-node examples/ascii_art/main.js"
},
"dependencies": {
"colors": "^1.3.0",
"shortid": "^2.2.8"
},
"jest": {
"reporters": [
"jest-silent-reporter"
],
"roots": [
"<rootDir>/src/"
],
"testURL": "http://localhost",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js$"
}
}