-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.54 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "notochord-editor",
"version": "1.2.0",
"description": "",
"main": "dist/NotochordEditor.js",
"type": "module",
"types": "types/NotochordEditor.d.ts",
"scripts": {
"playground": "npx http-server -o playground.html",
"link": "npm link ~/git/notochord-song",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-scss; npm run build-ts; # npm run build-declarations",
"build-scss": "npx sass src/scss/NotochordEditor.scss dist/NotochordEditor.css",
"build-ts": "npx rollup -c",
"build-declarations": "npx tsc -d --emitDeclarationOnly --declarationDir types/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notochord/notochord-editor.git"
},
"author": "Jacob Bloom",
"license": "ISC",
"bugs": {
"url": "https://github.com/notochord/notochord-editor/issues"
},
"homepage": "https://github.com/notochord/notochord-editor#readme",
"devDependencies": {
"@types/react": "^16.9.34",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"http-server": "^0.12.1",
"rollup": "^1.17.0",
"rollup-plugin-banner": "^0.2.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"sass": "^1.26.5",
"tslib": "^1.10.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"notochord-song": "git+https://github.com/notochord/notochord-song.git#3.0.0",
"react": ">=16.0"
},
"dependencies": {}
}