annotate package.json @ 69:72ad92ebda7a

don't need forObjects typing workaround anymore
author drewp@bigasterisk.com
date Mon, 10 Feb 2020 16:57:22 -0800
parents 335b0e141800
children f7143866fae1 70bc10f3eb07
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
drewp@localhost
parents:
diff changeset
1 {
drewp@localhost
parents:
diff changeset
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
0d0638bd98be use pnpm
drewp@bigasterisk.com
parents: 58
diff changeset
4 "license": "MIT",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
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
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
8 "build": "rollup -c",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
9 "build_forever": "rollup -cw",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
10 "test": "jest",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
11 "test_forever": "jest --watch"
0
drewp@localhost
parents:
diff changeset
12 },
17
94629c39681c trying to do ts+jest. WIP
drewp@bigasterisk.com
parents: 9
diff changeset
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",
9ec3cbc8791a build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents: 19
diff changeset
16 "@types/jsonld": "^1.5.0",
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
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
20 "n3": "^1.3.5",
63
335b0e141800 update deps
drewp@bigasterisk.com
parents: 60
diff changeset
21 "rdf-js": "^1.0.2"
17
94629c39681c trying to do ts+jest. WIP
drewp@bigasterisk.com
parents: 9
diff changeset
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": {
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
24 "@rollup/plugin-commonjs": "^11.0.1",
56
2cfd5471dc8f lib updates
drewp@bigasterisk.com
parents: 50
diff changeset
25 "@rollup/plugin-node-resolve": "^7.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
26 "@rollup/plugin-replace": "^2.3.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
27 "@types/jest": "^24.0.25",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
28 "@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
29 "jest": "^24.9.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
30 "node-globals": "^0.1.5",
56
2cfd5471dc8f lib updates
drewp@bigasterisk.com
parents: 50
diff changeset
31 "rollup": "^1.29.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
32 "rollup-plugin-node-builtins": "^2.1.2",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
33 "rollup-plugin-postcss": "^2.0.3",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
34 "rollup-plugin-typescript2": "^0.25.3",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
35 "stylus": "^0.54.7",
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
36 "ts-jest": "^24.3.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
37 "tslib": "^1.10.0",
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
38 "typescript": "^3.7.4"
0
drewp@localhost
parents:
diff changeset
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 }