-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.56 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
{
"name": "drag-drop-stage-component",
"version": "1.0.35",
"description": "A component to \"drag'n drop\"-enable your projects, maintained and simple, light on dependencies",
"main": "src/ts/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/silexlabs/drag-drop-stage-component.git"
},
"engines": {
"node": ">=10.16.3 <17"
},
"scripts": {
"release": "",
"prepare": "npm run build:demo",
"prepublishOnly": "npm run build:demo",
"lint": "echo NO LINTER YET",
"test": "jest",
"test:watch": "jest --watch",
"test:update-snapshot": "jest --updateSnapshot",
"serve": "http-server . -o",
"build": "mkdir -p pub/js && npm run install:redux && npm run install:requirejs && npm run build:js",
"watch": "npm run build:js -- --watch",
"build:js": "tsc -p tsconfig.json",
"build:demo": "npm run build && tsc -p tsconfig.json && pug src/jade/index.jade -o pub && lessc src/less/demo.less pub/css/demo.css",
"install:requirejs": "cp `node_modules`/requirejs/require.js pub/require.js",
"install:redux": "cp `node_modules`/redux/dist/redux.min.js pub/redux.js"
},
"author": "Alex Hoyau <[email protected]> (https://lexoyo.me/)",
"license": "MIT",
"dependencies": {
"redux": "4.2.0"
},
"devDependencies": {
"@jest-runner/electron": "3.0.1",
"@types/jest": "27.4.1",
"ts-jest": "^26.0.0",
"jest": "26.0.1",
"electron": "20.0.3",
"less": "4.1.3",
"node_modules-path": "2.0.5",
"pug-cli": "1.0.0-alpha6",
"requirejs": "2.3.6",
"typescript": "4.7.4"
}
}