-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 KB
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
{
"name": "bas2tap",
"version": "0.0.1-alpha.4",
"main": "index.js",
"license": "GPL-2.0+",
"author": "Steve Robertson <stever@hey.com>",
"description": "Emscripten conversion for bas2tap which converts BASIC to a TAP tape file.",
"keywords": [
"emscripten",
"zxspectrum",
"basic"
],
"homepage": "https://github.com/stever/emscripten-bas2tap#readme",
"repository": {
"type": "git",
"url": "https://github.com/stever/emscripten-bas2tap.git"
},
"bugs": {
"url": "https://github.com/stever/emscripten-bas2tap/issues"
},
"files": [
"index.js",
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "run-s clean:all build:release clean",
"build:debug": "mkdirp build && cd build && emcmake cmake -DCMAKE_BUILD_TYPE=Debug .. && make && cp-cli bas2tap.js ../dist/bas2tap.js",
"build:release": "mkdirp build && cd build && emcmake cmake -DCMAKE_BUILD_TYPE=Release .. && make && cp-cli bas2tap.js ../dist/bas2tap.js",
"clean": "del-cli build",
"clean:all": "del-cli build dist",
"test": "jest --noStackTrace",
"publish-pkg": "npm publish --access public"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-jest": "^27.2.1",
"cp-cli": "^1.1.2",
"del-cli": "^4.0.1",
"jest": "^27.2.1",
"jest-transform-stub": "^2.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest",
".+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)(\\?inline)?$": "jest-transform-stub"
},
"globals": {
"STAGING_ENV": "prod"
}
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
],
"plugins": [
"@babel/plugin-transform-runtime"
]
},
"dependencies": {}
}