Mercurial > code > home > repos > streamed-graph
annotate package.json @ 48:b8e5850acca0
local demo; styles
author | drewp@bigasterisk.com |
---|---|
date | Thu, 09 Jan 2020 00:04:45 -0800 |
parents | 895ae7c5b0f4 |
children | 1264ba9ffb10 |
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", |
48 | 16 "@types/n3": "^1.1.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
|
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": { |
48 | 23 "@rollup/plugin-commonjs": "^11.0.1", |
24 "@rollup/plugin-node-resolve": "^6.1.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", |
48 | 27 "@types/rollup-plugin-postcss": "^2.0.0", |
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
|
28 "jest": "^24.9.0", |
34 | 29 "node-globals": "^0.1.5", |
48 | 30 "rollup": "^1.28.0", |
34 | 31 "rollup-plugin-node-builtins": "^2.1.2", |
48 | 32 "rollup-plugin-postcss": "^2.0.3", |
34 | 33 "rollup-plugin-typescript2": "^0.25.3", |
48 | 34 "stylus": "^0.54.7", |
35 "ts-jest": "^24.3.0", | |
34 | 36 "tslib": "^1.10.0", |
37 "typescript": "^3.7.4" | |
0 | 38 } |
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
|
39 } |