forked from tc39/proposal-record-tuple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 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
{
"name": "proposal-record-tuple",
"version": "0.1.0",
"description": "Record and Tuple value types for JS",
"scripts": {
"prebuild:spec": "mkdirp out",
"prewatch:spec": "mkdirp out",
"build:spec": "ecmarkup spec.html out/index.html",
"build:cookbook": "node ./scripts/build-static-page.mjs cookbook",
"build:tutorial": "node ./scripts/build-static-page.mjs tutorial",
"build": "concurrently npm:build:spec npm:build:cookbook npm:build:tutorial",
"watch:spec": "ecmarkup --watch spec.html out/index.html",
"watch:browser": "browser-sync start --server --ss=\"out\" --directory --files=\"out/*.html\"",
"watch:cookbook": "node ./scripts/watch-static-page.mjs cookbook",
"watch:tutorial": "node ./scripts/watch-static-page.mjs tutorial",
"watch": "concurrently npm:watch:spec npm:watch:cookbook npm:watch:tutorial npm:watch:browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-record-tuple.git"
},
"author": "Robin Ricard <[email protected]>",
"license": "https://tc39.github.io/ecma262/#sec-copyright-and-software-license",
"bugs": {
"url": "https://github.com/tc39/proposal-record-tuple/issues"
},
"homepage": "https://github.com/tc39/proposal-record-tuple#readme",
"dependencies": {
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"ecmarkup": "^9.1.0",
"mkdirp": "^0.5.1",
"fs-extra": "^9.0.1",
"marked": "^1.1.0"
}
}