-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
60 lines (60 loc) · 1.83 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": "can-define",
"version": "2.8.1",
"description": "Create observable objects with JS dot operator compatibility",
"main": "can-define.js",
"scripts": {
"jshint": "jshint --config .jshintrc --exclude ./node_modules,./dist .",
"preversion": "npm test",
"postpublish": "git push --tags && git push",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"start": "serve -p 8080",
"testee": "testee test/test.html --browsers firefox",
"test": "npm run detect-cycle && npm run jshint && npm run testee",
"detect-cycle": "detect-cyclic-packages"
},
"repository": {
"type": "git",
"url": "https://github.com/canjs/can-define"
},
"keywords": [
"CanJS"
],
"author": "Bitovi",
"license": "MIT",
"bugs": {
"url": "https://github.com/canjs/can-define/issues"
},
"homepage": "https://github.com/canjs/can-define",
"dependencies": {
"can-assign": "^1.1.1",
"can-construct": "^3.5.4",
"can-data-types": "<2.0.0",
"can-define-lazy-value": "^1.0.0",
"can-diff": "^1.0.0",
"can-event-queue": "^1.0.0",
"can-log": "^1.0.0",
"can-namespace": "^1.0.0",
"can-observation": "^4.0.0",
"can-observation-recorder": "^1.0.0",
"can-queues": "^1.0.0",
"can-reflect": "^1.15.0",
"can-simple-observable": "^2.4.0",
"can-single-reference": "^1.0.0",
"can-string-to-any": "^1.0.1",
"can-symbol": "^1.0.0"
},
"devDependencies": {
"can-reflect-tests": "^1.0.0",
"can-test-helpers": "^1.1.4",
"detect-cyclic-packages": "^1.1.0",
"jshint": "^2.13.6",
"serve": "^11.0.0",
"steal": "^2.0.0",
"steal-qunit": "^2.0.0",
"testee": "^0.9.0"
}
}