-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.21 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
{
"name": "anthology.scss",
"version": "0.8.1",
"description": "A SCSS library for generating functional CSS patterns that are declarative, theme-able, automatically responsive, and compatible with atomic design!",
"author": "Ian K Smith <[email protected]>",
"license": "MIT",
"scripts": {
"example:basic": "parcel ./example/basic/basic.html --out-dir ./.parcel-dist",
"dev": "yarn clean && yarn compile:watch",
"build": "yarn clean && yarn compile",
"compile": "microbundle build src/ts/index.ts --name AnthologyClient",
"compile:watch": "microbundle watch src/ts/index.ts --name AnthologyClient",
"lint": "tslint src/**/*.ts",
"clean": "rimraf dist",
"clean:cache": "rimraf .rts2_cache_* .parcel-dist .cache",
"prepublishOnly": "yarn build"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"unpkg": "dist/index.umd.js",
"devDependencies": {
"@radarrelay/tslint-config": "github:RadarRelay/tslint-config",
"microbundle": "^0.8.3",
"node-sass": "~4.9.3",
"parcel-bundler": "~1.10.2",
"prettier": "~1.14.3",
"rimraf": "^2.6.2",
"tslint": "~5.11.0",
"typescript": "~3.1.2"
},
"peerDependencies": {
"node-sass": "~4.9.3"
}
}