Mercurial > code > home > repos > streamed-graph
annotate package.json @ 42:895ae7c5b0f4
don't pile all the deps in our sharable library. other fixes to make it work as a dep.
author | drewp@bigasterisk.com |
---|---|
date | Wed, 01 Jan 2020 19:39:57 -0800 |
parents | 5eb29ce7a354 |
children | b8e5850acca0 |
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", |
34 | 4 "types": "build/index.d.ts", |
41
5eb29ce7a354
fuss with published module name and path
drewp@bigasterisk.com
parents:
37
diff
changeset
|
5 "module": "build/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
|
6 "scripts": { |
35 | 7 "build": "rollup -c", |
8 "build_forever": "rollup -cw", | |
9 "test": "jest", | |
10 "test_forever": "jest --watch" | |
0 | 11 }, |
17 | 12 "dependencies": { |
20
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
13 "@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
|
14 "@polymer/polymer": "^3.3.1", |
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
15 "@types/jsonld": "^1.5.0", |
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
16 "@types/n3": "^1.1.1", |
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
|
17 "jsonld": "^2.0.1", |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
18 "lit-html": "^1.1.2", |
34 | 19 "n3": "^1.3.5", |
20 "readable-stream": "^3.4.0" | |
17 | 21 }, |
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
|
22 "devDependencies": { |
35 | 23 "@rollup/plugin-commonjs": "^11.0.0", |
34 | 24 "@rollup/plugin-node-resolve": "^6.0.0", |
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
|
25 "@rollup/plugin-replace": "^2.3.0", |
34 | 26 "@types/jest": "^24.0.25", |
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
|
27 "jest": "^24.9.0", |
34 | 28 "node-globals": "^0.1.5", |
29 "rollup": "^1.27.14", | |
30 "rollup-plugin-node-builtins": "^2.1.2", | |
31 "rollup-plugin-typescript2": "^0.25.3", | |
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
|
32 "ts-jest": "^24.2.0", |
34 | 33 "tslib": "^1.10.0", |
34 "typescript": "^3.7.4" | |
0 | 35 } |
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
|
36 } |