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
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",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
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
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
7 "build": "rollup -c",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
8 "build_forever": "rollup -cw",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
9 "test": "jest",
29d8ed02a275 build and tests, including jsonld
drewp@bigasterisk.com
parents: 34
diff changeset
10 "test_forever": "jest --watch"
0
drewp@localhost
parents:
diff changeset
11 },
17
94629c39681c trying to do ts+jest. WIP
drewp@bigasterisk.com
parents: 9
diff changeset
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
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
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
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
19 "n3": "^1.3.5",
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
20 "readable-stream": "^3.4.0"
17
94629c39681c trying to do ts+jest. WIP
drewp@bigasterisk.com
parents: 9
diff changeset
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
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
23 "@rollup/plugin-commonjs": "^11.0.1",
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
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
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
26 "@types/jest": "^24.0.25",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
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
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
29 "node-globals": "^0.1.5",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
30 "rollup": "^1.28.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
31 "rollup-plugin-node-builtins": "^2.1.2",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
32 "rollup-plugin-postcss": "^2.0.3",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
33 "rollup-plugin-typescript2": "^0.25.3",
48
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
34 "stylus": "^0.54.7",
b8e5850acca0 local demo; styles
drewp@bigasterisk.com
parents: 42
diff changeset
35 "ts-jest": "^24.3.0",
34
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
36 "tslib": "^1.10.0",
3d8b98e9c01d building, but without jsonld so far
drewp@bigasterisk.com
parents: 33
diff changeset
37 "typescript": "^3.7.4"
0
drewp@localhost
parents:
diff changeset
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 }