-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 2.27 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
{
"name": "WRTE",
"version": "0.0.1",
"description": "Web RunTime Environment",
"main": "test/runner.js",
"repository": "https://github.com/smokku/wrte.git",
"author": "Tomasz Sterna <[email protected]>",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "7.14.6",
"@babel/plugin-syntax-object-rest-spread": "7.8.3",
"@babel/preset-flow": "7.14.5",
"babel-eslint": "10.1.0",
"babel-plugin-discard-module-references": "1.1.2",
"babel-plugin-istanbul": "6.0.0",
"cors": "2.8.5",
"documentation": "12.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-jsdoc": "9.3.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jsdoc": "24.0.6",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "4.1.0",
"eslint-plugin-tape": "1.1.0",
"eslint-plugin-unicorn": "6.0.1",
"flow-bin": "0.87.0",
"fs-extra": "9.1.0",
"git-rev-sync": "2.1.0",
"live-server": "1.2.1",
"nodemon": "2.0.8",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"puppeteer-core": "3.3.0",
"puppeteer-to-istanbul": "1.4.0",
"rollup": "2.52.3",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-root-import": "1.0.0",
"tap-junit": "3.1.2",
"tap-spec": "5.0.0",
"tape": "4.13.3"
},
"dependencies": {
"tape-rollup": "4.6.4"
},
"scripts": {
"build": "rm -rf dist/current && rollup -c",
"watch": "rollup -c -w",
"serve": "live-server --verbose --no-browser --cors dist/",
"start": "npm-run-all --parallel watch serve",
"lint": "eslint '{kernel,lib,cmd,test}/**.js'",
"flow": "flow check",
"check": "npm-run-all --parallel lint flow",
"tap": "node test/runner.js | tap-spec",
"tap:log": "node test/runner.js | tee test.log | tap-spec",
"test": "NODE_ENV=test npm-run-all --serial check build tap:log",
"test:watch": "NODE_ENV=test nodemon -w kernel -w lib -w cmd -w test --exec npm-run-all --serial build tap",
"docs": "documentation build --shallow --github --document-exported --config documentation.yml 'kernel/**.js' 'lib/**.js' 'cmd/**.js' -f html -o dist/docs"
}
}