-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 943 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "create-jsy",
"version": "1.2.1",
"description": "Init a priate JSY project without any prompts!",
"keywords": [
"npm init",
"npx",
"JSY"
],
"license": "BSD-2-Clause",
"author": "Shane Holloway <[email protected]>",
"homepage": "https://github.com/jsy-lang/npm-create-jsy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jsy-lang/npm-create-jsy.git"
},
"bugs": {
"url": "https://github.com/jsy-lang/npm-create-jsy/issues"
},
"bin": "create-jsy.js",
"main": "cjs/create-jsy.js",
"module": "esm/create-jsy.mjs",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.3",
"create-from-gh": "^0.4.0",
"rollup": "^1.32.1"
},
"scripts": {
"clean": "rm -rf ./cjs/* ./esm/*",
"build": "rollup --config",
"watch": "npm -s run build -- --watch",
"pretest": "npm -s run build",
"test": "true"
}
}