-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "async",
"version": "1.0.0",
"description": "Working with async code, functionally",
"main": "index.js",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server --open --mode development",
"test":
"node --harmony-async-iteration ./node_modules/jest/bin/jest.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hesher/async.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hesher/async/issues"
},
"homepage": "https://github.com/hesher/async#readme",
"devDependencies": {
"@types/jest": "^22.2.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.10",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6",
"jest": "^22.4.3",
"style-loader": "^0.20.3",
"ts-jest": "^22.4.2",
"ts-loader": "^4.1.0",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.3",
"webpack": "^4.1.1",
"webpack-dev-server": "^3.1.1"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"printWidth": 80,
"jsxBracketSameLine": true
},
"dependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"babel-loader": "^8.0.0-beta.2",
"babel-polyfill": "^6.26.0",
"webpack-cli": "^2.0.12"
}
}