-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"name": "spinonediv",
"version": "0.1.0",
"description": "Single Element pure CSS Spinners & Loaders",
"homepage": "https://github.com/grammka/spinonediv#readme",
"author": "Pavel Ivanov ([email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/grammka/spinonediv.git"
},
"keywords": [
"spinaround",
"spinners",
"spinner",
"loaders",
"loading",
"stylus",
"scss",
"sass",
"css",
"ui"
],
"main": "./lib",
"scripts": {
"start": "mkdirp ./lib && npm run scss:build",
"prepublish": "npm run scss:build",
"clean": "rimraf ./lib",
"styl:dev": "stylus -w ./src/styl/spinonediv.styl -o ./lib -u ./node_modules/nib/lib/nib",
"styl:build": "stylus ./src/styl/spinonediv.styl -o ./lib -u ./node_modules/nib/lib/nib",
"scss:dev": "node-sass -w ./src/scss/spinonediv.scss -o ./lib --include-path ./node_modules",
"scss:build": "node-sass ./src/scss/spinonediv.scss -o ./lib --include-path ./node_modules"
},
"dependencies": {},
"devDependencies": {
"mkdirp": "^0.5.1",
"nib": "^1.1.2",
"node-sass": "^4.11.0",
"rimraf": "^2.5.4",
"stylus": "^0.54.5"
}
}