This repository has been archived by the owner on Mar 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.63 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
{
"name": "example",
"version": "0.0.1",
"description": "Delete me! This is just an example.",
"main": "src/index.js",
"directories": {
"lib": "src/lib"
},
"scripts": {
"test": "npm run test:node && npm run test:browser",
"start": "node src/index.js",
"build": "cd ./build && npm run all",
"build:node": "cd ./build && npm run node",
"build:browser": "cd ./build && npm run browser",
"test:node": "cd ./test && npm run node",
"test:browser": "cd ./test && npm run browser",
"reset": "echo Resetting test environments && cd ./test && npm run clean && cd ../build && npm run clean",
"manually": "cd ./test && npm run browser:manual:open",
"manual:setup": "cd ./test && npm run browser:manual:create",
"again": "cd ./test && npm run browser:manual",
"setup": "echo \"Installing build and test dependencies...\" && cd ./build && npm i --no-package-lock && cd ../test && npm i --no-package-lock && echo Template Setup Complete.",
"resetup": "node -e \"let fs=require('fs'),path=require('path');fs.rmdirSync(path.resolve('./build/node_modules'), { recursive: true });fs.rmdirSync(path.resolve('./test/node_modules'), { recursive: true });\" && npm run setup",
"report:compat": "cd ./test && npm run compat",
"report:syntax": "cd ./test && npm run syntax",
"report:preview": "npm pack --dry-run && echo \"==============================\" && echo \"This report shows what will be published to the module registry. Pay attention to the tarball contents and assure no sensitive files will be published.\""
},
"type": "module",
"author": "",
"private": true,
"license": "Unlicense"
}