-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.73 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@smartface/styler",
"version": "2.1.0",
"description": "Component styling wrapper",
"main": "index.js",
"type": "index.d.ts",
"scripts": {
"test": "mocha --compilers js:babel-core/register ./test/**/*.test.js",
"test:watch": "mocha --watch --compilers js:babel-core/register ./test/**/*.test.js",
"prepublish": "npm run build",
"watch": "tsc -w",
"postpublish": "rm -rf ./lib",
"build": "rm -rf ./lib && tsc",
"docs:create": "jsdox ./src -o docs",
"jase": "jase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smartface/styler.git"
},
"keywords": [
"javascript",
"mobile",
"styling",
"style"
],
"author": "Cenk Cetinkaya",
"license": "MIT",
"bugs": {
"url": "https://github.com/smartface/styler/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/smartface/styler#readme",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.4",
"babel-jest": "^26.1.0",
"chai": "^3.5.0",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.1",
"cross-env": "^4.0.0",
"cz-conventional-changelog": "^2.0.0",
"cz-customizable": "^5.0.0",
"eslint": "^4.18.2",
"jase": "^1.2.0",
"jest": "^26.1.0",
"jsdox": "^0.4.10",
"minimist": "^1.2.0",
"semver": "^5.3.0",
"ts-jest": "^26.1.2",
"typescript": "3.8.3",
"dts-bundle": "^0.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"path": "./node_modules/cz-conventional-changelog",
"config": "./.cz-config.js"
}
}
}