forked from typestyle/typestyle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.2 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.2 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
42
43
44
45
46
47
{
"name": "typestyle",
"version": "2.4.0",
"description": "TypeSafe CSS",
"main": "./lib/index.js",
"typings": "./lib/index",
"types": "./lib/index",
"module": "./lib.es2015/index.js",
"jsnext:main": "./lib.es2015/index.js",
"scripts": {
"build": "tsc -p . && tsc -p tsconfig.es2015.json && webpack",
"unittest": "mocha ./lib/tests/**/*.js",
"test": "npm run build && npm run unittest",
"preversion": "npm run test",
"postversion": "git push --follow-tags && npm publish",
"start": "npm run build -- -w & npm run unittest -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typestyle/typestyle.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/typestyle/typestyle/issues"
},
"homepage": "https://github.com/typestyle/typestyle#readme",
"dependencies": {
"csstype": "3.0.10",
"free-style": "3.1.0"
},
"devDependencies": {
"@types/mocha": "7.0.2",
"@types/node": "12.6.4",
"mocha": "7.1.0",
"ts-node": "7.0.1",
"typescript": "3.8.3",
"webpack": "4.42.0",
"webpack-cli": "^3.3.11"
},
"greenkeeper": {
"ignore": [
"webpack"
]
}
}