-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 2 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "revact",
"version": "0.0.6-beta",
"main": "revact.umd.js",
"module": "revact.es5.js",
"es2015": "revact.es2015.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"repository": "https://github.com/PxyUp/Revact",
"author": "Iurii Panarin <[email protected]>",
"license": "MIT",
"keywords": [
"dom",
"fast",
"performance",
"reactive",
"virtual",
"js",
"class"
],
"scripts": {
"serve": "rollup --config rollup.config.dev.js",
"build:medium": "rollup --config rollup.config.medium.js",
"build:github": "rollup --config rollup.config.prod.js",
"build:lib": "rollup --config rollup.config.lib.js",
"format:code": "prettier --write \"src/**/*.{ts,js,?css}\"",
"lint": "tslint -c tslint.json -p tsconfig.lib.json",
"test": "cypress run",
"start:ci": "http-server ./tests/build/ -c-1 --silent",
"test:ci": "run-p --race start:ci test",
"ct": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,js,?css}": [
"prettier --write",
"yarn lint",
"git add"
]
},
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"commitizen": "^3.0.7",
"commitlint": "^7.5.2",
"cypress": "^3.2.0",
"http-server": "^0.11.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.7.0",
"rollup-plugin-bundle-html": "^0.1.5",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.20.1",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.4000"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
80
]
}
}
}