-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
{
"name": "@lvchengbin/observer",
"version": "0.1.10",
"description": "A library for watching the changes of objects, and the changes of return values of expressions or functions",
"keywords": [
"observer",
"getter",
"setter",
"object",
"data",
"watch"
],
"main": "dist/observer.cjs.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "rollup -c",
"prepublish": "npm run build",
"test": "karma start",
"test-obec": "karma start --file=test/obec.spec.js",
"test-basic": "karma start --file=test/basic.spec.js",
"test-map": "karma start --file=test/map.spec.js",
"test-collector": "karma start --file=test/collector.spec.js",
"test-methods": "karma start --file=test/methods.spec.js",
"test-array": "karma start --file=test/array.spec.js",
"lint": "eslint ./ --cache --ignore-path .eslintignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"repository": {
"type": "git",
"url": "[email protected]:LvChengbin/observer.git"
},
"author": "LvChengbin",
"license": "MIT",
"devDependencies": {
"@lvchengbin/promise": "^1.1.3",
"@lvchengbin/sleep": "0.0.1",
"buble": "^0.19.3",
"eslint": "^4.15.0",
"jasmine-core": "^2.8.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-rollup-preprocessor": "^5.1.1",
"optimist": "^0.6.1",
"pre-commit": "^1.2.2",
"puppeteer": "^1.0.0",
"rollup": "^0.54.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-resolve": "^3.0.2"
},
"dependencies": {
"@lvchengbin/event-emitter": "0.1.2",
"@lvchengbin/is": "0.0.9",
"@lvchengbin/sequence": "^1.0.0"
}
}