-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 KB
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
{
"name": "iposcursor",
"version": "0.1.5",
"description": "Simple implementation of ipadOS 13.4 cursor built in Javascript.",
"main": "dist/index.js",
"directories": {
"example": "example",
"dist": "dist"
},
"files" : ["dist"],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run build:umd && npm run build:less",
"build:less": "lessc ./src/less/* ./dist/css/iposcursor.min.css -x",
"build:umd": "parcel build -d dist src/index.ts --out-file iposcursor.min.js --global iposcursor",
"demo": "npm run build && cd example/parcel/ && parcel index.html",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josesaranda/iposcursor.git"
},
"keywords": [
"ipad",
"javascript",
"cursor"
],
"author": "José Sánchez Aranda",
"license": "MIT",
"bugs": {
"url": "https://github.com/josesaranda/iposcursor/issues"
},
"homepage": "https://github.com/josesaranda/iposcursor#readme",
"devDependencies": {
"less": "^3.11.1",
"parcel-bundler": "^1.12.4",
"typescript": "^3.9.2"
}
}