Mercurial > code > home > repos > streamed-graph
annotate package.json @ 35:29d8ed02a275
build and tests, including jsonld
author | drewp@bigasterisk.com |
---|---|
date | Sat, 28 Dec 2019 02:01:23 -0800 |
parents | 3d8b98e9c01d |
children | 6a1d158d6ca4 |
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 "main": "pkg2", |
5 "module": "build/pkg2", | |
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 "files": [ |
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 "build/" |
b82c05e22d9a
change to npm with a build that worked better as a local package to be shared
drewp@bigasterisk.com
parents:
31
diff
changeset
|
8 ], |
34 | 9 "types": "build/index.d.ts", |
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
|
10 "scripts": { |
35 | 11 "build": "rollup -c", |
12 "build_forever": "rollup -cw", | |
13 "test": "jest", | |
14 "test_forever": "jest --watch" | |
0 | 15 }, |
17 | 16 "dependencies": { |
20
9ec3cbc8791a
build is running, but no tests, and lots of code is disabled
drewp@bigasterisk.com
parents:
19
diff
changeset
|
17 "@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
|
18 "@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
|
19 "@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
|
20 "@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
|
21 "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
|
22 "lit-html": "^1.1.2", |
34 | 23 "n3": "^1.3.5", |
24 "readable-stream": "^3.4.0" | |
17 | 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
|
26 "devDependencies": { |
35 | 27 "@rollup/plugin-commonjs": "^11.0.0", |
34 | 28 "@rollup/plugin-node-resolve": "^6.0.0", |
29 "@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
|
30 "jest": "^24.9.0", |
34 | 31 "node-globals": "^0.1.5", |
32 "rollup": "^1.27.14", | |
33 "rollup-plugin-node-builtins": "^2.1.2", | |
34 "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
|
35 "ts-jest": "^24.2.0", |
34 | 36 "tslib": "^1.10.0", |
37 "typescript": "^3.7.4" | |
0 | 38 } |
35 | 39 } |