-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 821 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 821 Bytes
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
{
"name": "alandalang",
"version": "0.1.0",
"description": "",
"bin": {
"alandalang": "bin/alandalang"
},
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node bin/alandalang"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/generator": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"mock-fs": "^4.10.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "^.+\\.test.jsx?$",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
}
}