-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.72 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
{
"name": "simple-utils-tiny",
"version": "1.1.6",
"description": "Some simple regexp utils function for js",
"main": "dist/simple-utils-tiny.js",
"module": "dist/simple-utils-tiny.esm.js",
"files": [
"dist",
"types"
],
"typings": "types/index.d.ts",
"scripts": {
"test": "karma start test/unit/karma.config.js",
"lint": "eslint src/**/*.js",
"build": "rimraf dist/* && rollup -c build/build.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/lennokiki/simple-utils-tiny.git"
},
"keywords": [
"utils",
"js",
"regexp"
],
"author": "Lenno kiki",
"license": "MIT",
"bugs": {
"url": "https://github.com/lennokiki/simple-utils-tiny/issues"
},
"homepage": "http://doc.preetyname.com/sut",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"lint-staged": "^8.1.5",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"rollup": "^1.4.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-size-snapshot": "^0.8.0",
"rollup-plugin-terser": "^4.0.4",
"webpack": "^4.23.1"
},
"dependencies": {}
}