-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "ts-bc",
"version": "0.0.2",
"description": "",
"main": "libs/index.js",
"types": "libs/index.d.ts",
"browser": "libs/browser.js",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"build:cases": "tsc -p ./tsconfig.test.json",
"build:browser": "webpack",
"build:vm": "webpack --config ./webpack.vm.config.js",
"test": "jest --testPathIgnorePatterns browser --testPathIgnorePatterns libs --testPathIgnorePatterns dist",
"test:browser": "npm run build:browser && jest",
"test:cases": "npm run build:cases && node ./dist/tests/cases.js",
"prettier": "prettier --config ./prettier.json --write ./types/**/* ./src/* ./src/**/* ./tests/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HearTao/ts-bc.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/HearTao/ts-bc/issues"
},
"files": [
"src",
"libs"
],
"homepage": "https://github.com/HearTao/ts-bc#readme",
"dependencies": {
"memfs": "2.15.5",
"ts-ez-host": "^0.0.7",
"typescript": "^3.7.0-dev.20190822"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/puppeteer": "^1.19.1",
"@types/webpack": "^4.39.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"puppeteer": "^1.19.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}