forked from coder/requirefs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "@coder/requirefs",
"version": "1.0.6",
"license": "MIT",
"author": "Coder",
"description": "Create a readable and requirable file system from tars, zips, or a custom provider.",
"main": "./out/requirefs",
"types": "./out/requirefs.d.ts",
"scripts": {
"test": "mocha -r ts-node/register -r amd-loader ./test/*.test.ts",
"lint": "eslint {src,test}/*.ts",
"generateZip": "rm -f ./test/lib.zip && cd ./test/lib && zip -r ../lib.zip ./*",
"generateTar": "rm -f ./test/lib.tar && tar -cf ./test/lib.tar -C ./test/lib .",
"prepublishOnly": "rm -rf ./out && tsc && browserify ./out/requirefs.js -s requirefs -o ./requirefs.js && rm ./out/*.js && mv ./requirefs.js ./out/requirefs.js"
},
"devDependencies": {
"@types/jszip": "0.0.21-alpha",
"@types/mocha": "2.2.39",
"@types/tar-fs": "^1.16.1",
"@types/tar-stream": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"amd-loader": "^0.0.8",
"browserify": "^16.5.0",
"eslint": "^6.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^6.2.0",
"prettier": "^1.18.2",
"tar-fs": "^2.0.0",
"text-encoding": "^0.7.0",
"ts-node": "^8.3.0",
"typescript": "~3.5.0"
},
"optionalDependencies": {
"jszip": "2.6.0"
}
}