-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
60 lines (60 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
{
"name": "smart-observe",
"version": "1.0.4",
"description": "smart-observe comes from Vue.js and is a small, efficient library for observing changes of javascript Object, Array and Class.",
"main": "dist/smart-observe.js",
"scripts": {
"test": "mocha",
"lint": "eslint src",
"clean": "rm -rf dist/*",
"rollup": "rollup --config --environment NODE_ENV:production --sourcemap",
"prebuild": "npm run lint && npm run clean",
"build": "npm run rollup && MIN=min npm run rollup",
"postbuild": "npm run test"
},
"dependencies": {
"smart-next-tick": "^1.1.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"keywords": [
"observe",
"observer",
"watch",
"watcher",
"computed",
"vue",
"vue.js",
"ob.js",
"ob"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cnlon/smart-observe.git"
},
"bugs": {
"url": "https://github.com/cnlon/smart-observe/issues"
},
"homepage": "https://github.com/cnlon/smart-observe#readme",
"author": "lon (http://lon.im)",
"license": "MIT"
}