This repository has been archived by the owner on Feb 28, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
81 lines (81 loc) · 2.33 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "turboscript",
"version": "1.0.11-beta",
"description": "Super charged JavaScript for parallel programming and WebAssembly",
"main": "index.js",
"directories": {
"test": "tests"
},
"dependencies": {
"binaryen": "1.37.13-nightly.20170617"
},
"devDependencies": {
"@types/debug": "^0.0.29",
"@types/fs-extra": "^2.1.0",
"@types/jest": "^19.2.2",
"@types/node": "^7.0.12",
"@types/webassembly-js-api": "^0.0.1",
"babel-jest": "^19.0.0",
"bin-loader": "^0.1.0",
"cross-env": "^5.0.1",
"debug": "^2.6.3",
"fs": "^0.0.1-security",
"fs-extra": "^2.1.2",
"has-flag": "^2.0.0",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"raw-loader": "^0.5.1",
"request": "^2.81.0",
"ts-jest": "^19.0.14",
"ts-lint": "^4.5.1",
"ts-loader": "^2.1.0",
"ts-node": "^3.0.2",
"typescript": "^2.3.4",
"uglify-js": "git://github.com/mishoo/UglifyJS2#harmony-v2.8.22",
"uglifyjs-webpack-plugin": "^0.4.3",
"webassembly": "^0.11.0",
"webpack": "^2.6.1"
},
"bin": {
"tc": "./bin/tc"
},
"scripts": {
"build:malloc": "node scripts/build-malloc",
"build:turboscript": "webpack --config webpack.config.js",
"build:tc": "tsc -p ./lib",
"build": "npm run build:malloc && npm run build:turboscript && npm run build:tc",
"watch-build": "cross-env NODE_ENV=dev webpack --progress --colors --watch",
"test": "node ./node_modules/jest/bin/jest.js",
"watch-test": "node ./node_modules/jest/bin/jest.js --watch"
},
"jest": {
"globals": {
"__TS_CONFIG__": "tsconfig.base.json"
},
"transform": {
".(ts|tsx)": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts)$",
"moduleFileExtensions": [
"ts",
"js"
],
"modulePathIgnorePatterns": [
"bin"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/01alchemist/TurboScript.git"
},
"author": "Nidin Vinayakan <[email protected]> (https://01alchemist.com)",
"contributors": [
"Max Graey <[email protected]> (https://github.com/MaxGraey)",
"Wink Saville <[email protected]> (https://github.com/winksaville)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/01alchemist/TurboScript/issues"
},
"homepage": "https://github.com/01alchemist/TurboScript#readme"
}