Files
xod/packages/xod-project/package.json
2021-01-18 17:28:20 +03:00

45 lines
1.4 KiB
JSON

{
"name": "xod-project",
"version": "0.37.0",
"description": "API functions to work on XOD project state",
"keywords": [],
"license": "AGPL-3.0",
"author": "XOD Team <dev@xod.io>",
"main": "dist/index.js",
"repository": {},
"scripts": {
"build:js": "babel src/ -d dist/ --source-maps",
"build:re": "bsb -make-world",
"build:built-in-patches": "node ./tools/loadBuiltinPatches.js",
"build:dummy-built-in-patches": "node ./tools/makeDummyBuiltinPatches.js",
"build": "yarn build:dummy-built-in-patches && yarn build:re && yarn build:js && yarn build:built-in-patches",
"dev:re": "yarn run build:re -w",
"dev": "yarn run build:js --watch",
"refmt": "find src/ test/ -name '*.re' -or -name '*.rei' -type f -exec refmt --in-place {} +",
"doc": "documentation build --format html --output doc --sort-order alpha src/",
"test": "mocha test/**/*.spec.js",
"clean:dist": "rimraf ./dist ./lib ./src/**/*.bs.js",
"test:watch": "yarn run test --watch"
},
"dependencies": {
"belt-holes": "^0.34.0",
"hm-def": "^0.3.2",
"ramda": "^0.24.1",
"ramda-fantasy": "^0.8.0",
"sanctuary-def": "^0.14.0",
"shortid": "^2.2.6",
"xod-func-tools": "^0.34.0"
},
"devDependencies": {
"bs-platform": "7.1.1",
"chai": "^4.1.2",
"documentation": "^4.0.0-beta12"
},
"files": [
"dist",
"src",
"bsconfig.json",
"built-in-patches.xodball"
]
}