-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.54 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
{
"name": "@quid2/top",
"version": "0.1.47",
"description": "TypeScript API for Quid2",
"main": "./js/index.js",
"typings": "./js/index.d.ts",
"scripts": {
"build": "tsc",
"release": "npm run build;npm run test;standard-version;maker;git commit -am \"release\";git push --follow-tags origin master;git status",
"get-deps": "npm update",
"test0": "tsc;tsc test/test-list;node test/test-list",
"test": "tsc;tsc test/test-list;node test/test-list;tsc test/test-flat;node test/test-flat;tsc test/test-util;node test/test-util",
"test-top": "parcel -p 2345 test/index.html",
"open-test-top": "open http://localhost:2345",
"doc": "typedoc ts/**.ts --out doc && open doc/index.html",
"dev": "doctest-ts --tape -watch ts/*.ts | while read file; do echo running tape on $file; tap -Rterse --no-cov $file;done",
"doctest": "doctest-ts --tape -watch ts/*.ts | while read file; do echo running tape on $file; tap -Rterse --no-cov $file; done",
"doctest-diff": "doctest-ts --tape -watch ts/*.ts | while read file; do echo running tape on $file; ts-node $file | tap-diff ; done",
"doctest-update": "cd ../EXTERNAL/doctest-ts;npm run build;cd -;npm install ../EXTERNAL/doctest-ts/",
"d": "doctest-ts --tape -watch ts/*.ts",
"adt": "cd ~/workspace/top-apps;stack install :zm;zm ts --srcDir \"/Users/titto/workspace/ts\"",
"clean": "cd ADT;rm **/*.js **/*.map **/*.d.ts",
"x": "ls -la `which doctest-ts`"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quid2/ts.git"
},
"keywords": [],
"author": "Pasqualino Titto Assini <tittoassini@gmail.com> (http://quid2.org)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Quid2/ts/issues"
},
"homepage": "https://github.com/Quid2/ts#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^7.0.2",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"doctest-ts": "file:../../EXTERNAL/doctest-ts",
"es6-promise": "^4.2.8",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"tap": "^14.10.7",
"tap-diff": "^0.1.1",
"tape": "^5.0.1",
"ts-doctest": "0.0.40",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"typescript": "^3.8.0",
"typescript-doctest": "^1.1.0"
},
"dependencies": {
"@quid2/adt": "file:../adt",
"@quid2/prim": "file:../prim",
"chai-as-promised": "^7.1.1",
"doctest": "^0.17.1",
"js-sha3": "^0.8.0",
"queueing-subject": "^0.3.4",
"rxjs": "^6.5.5",
"ws": "^7.3.0"
}
}