-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "karna",
"version": "0.0.1",
"description": "Simple bundler in the works",
"main": "./lib/index.js",
"bin": "./lib/Runner.js",
"scripts": {
"e2e": "jest -t e2e",
"test": "jest --testPathPattern=lib"
},
"keywords": [],
"author": "Peter Perlepes <igneel64>",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-jsx": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/preset-env": "^7.7.1",
"@babel/traverse": "^7.7.2",
"graceful-fs": "^4.2.3",
"sade": "^1.6.1",
"terser": "^4.4.2"
},
"devDependencies": {
"@babel/node": "^7.7.0",
"@babel/plugin-transform-regenerator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/runtime": "^7.7.4",
"@types/jest": "^24.0.23",
"babel-jest": "^24.9.0",
"jest": "^24.9.0",
"jest-file-snapshot": "^0.3.8",
"jest-puppeteer": "^4.3.0",
"node-static": "^0.7.11",
"puppeteer": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}