-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 901 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 901 Bytes
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
{
"name": "csstips",
"version": "1.2.0",
"description": "",
"main": "./lib/index.js",
"typings": "./lib/index",
"scripts": {
"build": "tsc -p . && npm run build:umd",
"build:umd": "ts-node scripts/rollup.ts",
"test": "npm run build",
"preversion": "npm run build",
"postversion": "git push --follow-tags && npm publish",
"start": "npm run build -- -w",
"u": "npm install typestyle@latest --save-exact --save-dev"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"typestyle": "^2.0.0"
},
"devDependencies": {
"csstype": "^2.5.2",
"rollup": "^1.21.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.3",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"typescript": "^2.8.3",
"typestyle": "^2.0.0"
}
}