syndicate-js/packages/core/package.json

28 lines
951 B
JSON
Raw Normal View History

{
2018-11-01 14:55:45 +00:00
"name": "@syndicate-lang/core",
"version": "0.6.0",
2021-01-18 22:11:53 +00:00
"description": "Syndicate/JS for browser and node.js",
2018-11-02 10:59:09 +00:00
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/master/packages/core",
2018-11-01 14:55:45 +00:00
"license": "GPL-3.0+",
2018-11-01 15:39:19 +00:00
"publishConfig": {
"access": "public"
},
2018-11-02 17:05:29 +00:00
"repository": "github:syndicate-lang/syndicate-js",
"scripts": {
2021-04-26 13:13:30 +00:00
"prepare": "yarn compile && yarn rollup",
2021-01-18 22:11:53 +00:00
"compile": "../../node_modules/.bin/tsc",
2021-04-26 13:13:30 +00:00
"compile:watch": "../../node_modules/.bin/tsc -w",
2021-01-17 13:14:02 +00:00
"rollup": "../../node_modules/.bin/rollup -c",
2021-04-26 13:13:30 +00:00
"rollup:watch": "../../node_modules/.bin/rollup -c -w",
"test": "../../node_modules/.bin/jest",
"cover": "../../node_modules/.bin/nyc --reporter=html ../../node_modules/.bin/jest"
},
2021-01-17 13:14:02 +00:00
"main": "dist/syndicate.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
2018-11-01 14:55:45 +00:00
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"dependencies": {
"@preserves/core": "0.15.0"
}
}