-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.16 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "untrusive",
"version": "1.0.2",
"description": "",
"main": "./dist/umd/untrusive.min.js",
"module": "./dist/module/index.js",
"types": "./dist/module/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/path-of-dev/untrusive"
},
"scripts": {
"prepublishOnly": "npm run build",
"publishCmd": "npm publish --access public",
"umd-build": "rollup ./dist/module/index.js --format umd -m --name 'Untrusive' --file ./dist/umd/untrusive.js",
"umd-minify": "uglifyjs ./dist/umd/untrusive.js -o ./dist/umd/untrusive.min.js --source-map url",
"module-build": "tsc",
"build": "rm -rf dist && npm run module-build && npm run umd-build && npm run umd-minify && cp ./dist/umd/untrusive.min.js ./demo && npm shrinkwrap --dev",
"demo": "http-server ./demo"
},
"keywords": [
"css loader",
"loader",
"indeterminate loading bar",
"indeterminate loader"
],
"author": "pathof.dev",
"license": "MIT",
"devDependencies": {
"rollup": "^1.19.3",
"tslint": "^5.18.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.5.3",
"uglify-js": "^3.6.0"
},
"dependencies": {}
}