-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
100 lines (100 loc) · 2.6 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "funclib.js",
"version": "6.0.6",
"description": "A powerful javascript functions library!",
"main": "index.js",
"scripts": {
"start": "npm run build && npm run usage",
"build": "node ./scripts/build-pre.js && npm run uglify && node ./scripts/build.js && node ./scripts/print.js",
"uglify": "uglifyjs ./src/funclib.js -m -o ./src/funclib.min.js",
"usage": "node usages.js",
"test": "npm run test:server && npm run test:client",
"test:server": "node scripts/test.js -s && mocha test/fn-index.js && mocha test/fn-core.js && mocha test/fn-lib.js",
"test:client": "node scripts/test.js -c && npm run karma:fun && npm run karma:min && npm run karma:core && npm run karma:mp",
"karma:fun": "karma start scripts/karma.conf.js fun",
"karma:min": "karma start scripts/karma.conf.js min",
"karma:core": "karma start scripts/karma.conf.js core",
"karma:mp": "karma start scripts/karma.conf.js mp",
"v:beta": "npm version prerelease --preid=beta",
"v:patch": "npm version patch",
"publish": "npm run test && node scripts/publish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CN-Tower/funclib.js.git"
},
"keywords": [
"fn",
"fn.js",
"funclib",
"funclib.js",
"FuncLib",
"function",
"functions",
"javascript",
"typescript",
"nodejs",
"util",
"utils",
"tools",
"lib",
"library",
"fn-lib",
"js-lib",
"js-util",
"js-utils",
"js-tools",
"js-log",
"js-logger",
"js-library",
"ts-lib",
"ts-util",
"ts-utils",
"ts-tools",
"ts-log",
"ts-logger",
"ts-library",
"javascript-library",
"js-functions",
"underscore",
"lodash",
"jquery",
"logger",
"print",
"pretty",
"formatter",
"chalk",
"full-screen",
"typeOf",
"fn4wx",
"fn4mini",
"funclib-mp",
"miniprogram"
],
"author": "CN-Tower",
"license": "MIT",
"bugs": {
"url": "https://github.com/CN-Tower/funclib.js/issues"
},
"homepage": "https://github.com/CN-Tower/funclib.js#readme",
"devDependencies": {
"@types/node": "^10.3.0",
"coveralls": "^3.0.0",
"funclib": "^6.0.1",
"jquery": "^3.3.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-power-assert": "^1.0.0",
"lodash": "^4.17.21",
"mocha": "^5.2.0",
"power-assert": "^1.5.0",
"progress": "^2.0.0",
"ts-loader": "^3.1.1",
"typescript": "^2.8.3",
"uglify-js": "^3.5.2",
"webpack": "^3.8.1"
}
}