Mercurial > code > home > repos > streamed-graph
annotate package.json @ 75:0ba4bd0ba245
update deps
author | drewp@bigasterisk.com |
---|---|
date | Tue, 11 Feb 2020 21:54:23 -0800 |
parents | 5cd795b4c545 |
children | 0c188ed3bcd8 |
rev | line source |
---|---|
0 | 1 { |
2 "name": "streamed-graph", | |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
3 "version": "0.0.2", |
60 | 4 "license": "MIT", |
34 | 5 "types": "build/index.d.ts", |
50
1264ba9ffb10
make a full-element version for pages that want to try to use that
drewp@bigasterisk.com
parents:
48
diff
changeset
|
6 "module": "build/lib.bundle", |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
7 "scripts": { |
35 | 8 "build": "rollup -c", |
9 "build_forever": "rollup -cw", | |
10 "test": "jest", | |
11 "test_forever": "jest --watch" | |
0 | 12 }, |
17 | 13 "dependencies": { |
20
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
14 "@polymer/decorators": "^3.0.0", |
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
15 "@polymer/polymer": "^3.3.1", |
73 | 16 "@types/jsonld": "^1.5.1", |
69
72ad92ebda7a
don't need forObjects typing workaround anymore
drewp@bigasterisk.com
parents:
63
diff
changeset
|
17 "@types/n3": "^1.1.5", |
72ad92ebda7a
don't need forObjects typing workaround anymore
drewp@bigasterisk.com
parents:
63
diff
changeset
|
18 "jsonld": "^2.0.2", |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
19 "lit-html": "^1.1.2", |
34 | 20 "n3": "^1.3.5", |
63 | 21 "rdf-js": "^1.0.2" |
17 | 22 }, |
33
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
23 "devDependencies": { |
75 | 24 "@rollup/plugin-commonjs": "^11.0.2", |
25 "@rollup/plugin-node-resolve": "^7.1.1", | |
26 "@rollup/plugin-replace": "^2.3.1", | |
27 "@types/jest": "^25.1.2", | |
48 | 28 "@types/rollup-plugin-postcss": "^2.0.0", |
75 | 29 "jest": "^25.1.0", |
34 | 30 "node-globals": "^0.1.5", |
75 | 31 "rollup": "^1.31.0", |
34 | 32 "rollup-plugin-node-builtins": "^2.1.2", |
75 | 33 "rollup-plugin-postcss": "^2.0.6", |
34 "rollup-plugin-typescript2": "^0.26.0", | |
48 | 35 "stylus": "^0.54.7", |
75 | 36 "ts-jest": "^25.2.0", |
34 | 37 "tslib": "^1.10.0", |
64 | 38 "typescript": "^3.7.5" |
0 | 39 } |
42
895ae7c5b0f4
don't pile all the deps in our sharable library. other fixes to make it work as a dep.
drewp@bigasterisk.com
parents:
41
diff
changeset
|
40 } |