squiggle/packages/squiggle-lang/package.json

47 lines
1.2 KiB
JSON
Raw Normal View History

2020-02-05 21:09:27 +00:00
{
2022-03-21 23:40:14 +00:00
"name": "@quri/squiggle-lang",
"version": "0.2.2",
2022-03-23 17:55:31 +00:00
"homepage": "https://squiggle-language.com",
2020-02-05 21:09:27 +00:00
"scripts": {
2022-02-18 03:25:35 +00:00
"build": "rescript build -with-deps",
"bundle": "webpack",
2022-02-18 03:25:35 +00:00
"start": "rescript build -w -with-deps",
2022-01-12 07:33:04 +00:00
"clean": "rescript clean",
2022-03-25 17:23:15 +00:00
"test:reducer": "jest --testPathPattern '.*__tests__/Reducer.*'",
2020-02-18 15:50:36 +00:00
"test": "jest",
"test:watch": "jest --watchAll",
"all": "yarn build && yarn bundle && yarn test"
2020-02-05 21:09:27 +00:00
},
"keywords": [
2022-01-30 00:20:53 +00:00
"Rescript"
2020-02-05 21:09:27 +00:00
],
2022-01-29 23:56:44 +00:00
"author": "Quantified Uncertainty Research Institute",
2020-02-05 21:09:27 +00:00
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^5.0.2",
2022-03-21 23:40:14 +00:00
"jstat": "^1.9.5",
"lodash": "4.17.21",
"mathjs": "10.4.1",
"pdfast": "^0.2.0",
2022-03-21 23:40:14 +00:00
"rationale": "0.2.0",
"rescript": "^9.1.4"
},
"devDependencies": {
2022-02-06 23:54:19 +00:00
"@glennsl/rescript-jest": "^0.9.0",
2022-02-18 02:16:31 +00:00
"@types/jest": "^27.4.0",
2022-03-21 23:40:14 +00:00
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
2022-01-28 10:55:03 +00:00
"docsify": "^4.12.2",
2022-01-29 22:43:08 +00:00
"gentype": "^4.3.0",
2022-02-18 02:16:31 +00:00
"jest": "^27.5.1",
2022-01-29 23:56:44 +00:00
"moduleserve": "0.9.1",
"ts-jest": "^27.1.4",
2022-03-21 23:40:14 +00:00
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
2022-03-21 23:40:14 +00:00
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
2022-03-21 23:40:14 +00:00
"source": "./src/js/index.ts",
"main": "./dist/bundle.js",
"types": "./dist/js/index.d.ts"
}