-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "thaw.js",
"version": "2.1.4",
"description": "synthetic asynchronous processing in javascript",
"files": [
"browser.js",
"browser.min.js",
"browser.min.js.map",
"dist/*.js",
"dist/*.ts"
],
"main": "dist/index.js",
"browser": "browser.js",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"dist": "tsc --outDir dist --declaration",
"browser": "lofi-bundler; echo '\n\n export { Thaw, Block, thaw };' >> browser.ts; tsc browser.ts --target es5 --module commonjs; rm browser.ts;",
"browser-min": "uglifyjs browser.js --compress --mangle -o browser.min.js --wrap Thaw --source-map",
"make": "rm -rf ./dist; npm run dist; npm run browser; npm run browser-min",
"prepare": "npm run make"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robertleeplummerjr/thaw.js.git"
},
"keywords": [
"multithread",
"cpu",
"async",
"synthetic"
],
"author": "Robert Lee Plummer Jr. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/robertleeplummerjr/thaw.js/issues"
},
"homepage": "https://github.com/robertleeplummerjr/thaw.js#readme",
"devDependencies": {
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7",
"lofi-bundler": "^1.0.1",
"uglify-js": "^3.13.0"
},
"config": {
"lofi-bundler": {
"entry": "src/index.ts",
"target": "browser.ts"
}
}
}