1
0
Fork 0
freesewing/config/templates/package.dflt.json

41 lines
1 KiB
JSON
Raw Normal View History

{
2021-04-11 11:04:46 +02:00
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
"homepage": "https://freesewing.org/",
"repository": "github:freesewing/freesewing",
"license": "MIT",
"bugs": {
"url": "https://github.com/freesewing/freesewing/issues"
},
"funding": {
"type": "individual",
"url": "https://freesewing.org/patrons/join"
},
"keywords": ["freesewing"],
"type": "module",
"module": "dist/index.mjs",
"exports": {
".": {
"internal": "./src/index.mjs",
"default": "./dist/index.mjs"
}
},
"scripts": {
"cibuild_step1": "node build.mjs",
"build": "node build.mjs",
2020-03-14 15:04:45 +01:00
"testonly": "BABEL_ENV=production ../../node_modules/.bin/_mocha tests/*.test.js --require @babel/register",
2019-04-29 11:12:41 +02:00
"publish": "npm run build && npm publish --access public"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {},
2022-06-22 15:59:01 +02:00
"files": ["dist/*", "README.md"],
"publishConfig": {
2019-04-29 11:12:41 +02:00
"access": "public",
2022-08-23 13:45:20 +02:00
"tag": "next"
},
"engines": {
"node": "18",
"npm": "9"
}
}