-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.96 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.96 KB
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": "watch-object",
"version": "1.1.2",
"description": "Observe changes on JavaScript objects",
"main": "dist/watch-object.js",
"author": "Laza Bogdan <laza.bogdan@macro-net.ro>",
"license": "ISC",
"scripts": {
"test": "npm run unit",
"dev": "webpack --config build/webpack.config.dev.js --progress --watch",
"build": "NODE_ENV=production webpack --config build/webpack.config.production.js --progress",
"build-dev": "webpack --config build/webpack.config.dev.js --progress",
"unit": "karma start build/karma.config.unit.js",
"cover": "karma start build/karma.config.cover.js",
"unit:watch": "karma start build/karma.config.unit.js --auto-watch --no-single-run",
"cover:watch": "karma start build/karma.config.cover.js --auto-watch --no-single-run",
"serve-test": "webpack-dev-server --config build/webpack.config.test.js"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^5.8.34",
"coveralls": "^2.11.9",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"object-assign": "^4.1.0",
"phantomjs-prebuilt": "^2.1.7",
"webpack": "^1.12.11",
"webpack-config-api": "^0.2.1",
"webpack-dev-server": "^1.14.1"
},
"keywords": [
"watch",
"reactive",
"reactivity"
],
"dependencies": {},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themekit/watch-object.git"
},
"bugs": {
"url": "https://github.com/themekit/watch-object/issues"
},
"homepage": "https://github.com/themekit/watch-object#readme"
}