-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.44 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
{
"name": "can-stache-element",
"description": "Create custom elements with can-stache, can-observable-object, and JavaScript classes",
"version": "1.2.0",
"author": {
"name": "Bitovi",
"email": "[email protected]",
"url": "http://bitovi.com"
},
"browserslist": "ie 11",
"bugs": {
"url": "https://github.com/canjs/can-stache-element/issues"
},
"dependencies": {
"can-bind": "^1.5.0",
"can-define-lazy-value": "^1.1.0",
"can-dom-mutate": "^2.0.3",
"can-log": "^1.0.2",
"can-namespace": "^1.0.0",
"can-observable-mixin": "^1.0.0",
"can-queues": "^1.3.0",
"can-simple-observable": "^2.4.2",
"can-stache": "^5.0.0",
"can-stache-bindings": "^5.0.0",
"can-symbol": "^1.6.4"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.4.5",
"@webcomponents/custom-elements": "^1.2.4",
"can-observable-bindings": "^1.1.0",
"can-reflect": "^1.17.11",
"can-reflect-dependencies": "^1.1.2",
"can-test-helpers": "^1.1.4",
"can-type": "^1.0.0",
"can-value": "^1.1.1",
"can-view-callbacks": "^5.0.0",
"can-view-scope": "^4.13.6",
"detect-cyclic-packages": "^1.1.0",
"fixpack": "^2.3.1",
"http-server": "^0.11.1",
"jshint": "^2.9.1",
"steal": "^2.2.1",
"steal-conditional": "^1.1.3",
"steal-qunit": "^2.0.0",
"test-saucelabs": "0.0.6",
"testee": "^0.9.0"
},
"homepage": "https://github.com/canjs/can-stache-element",
"keywords": [
"CanJS"
],
"license": "MIT",
"main": "dist/can-stache-element.js",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-stache-element.git"
},
"scripts": {
"ci": "npm run test && node test/test-saucelabs.js",
"compile-to-es5": "babel src --out-dir dist",
"detect-cycle": "detect-cyclic-packages --ignore fsevents",
"http-server": "http-server -p 3000 --silent",
"jshint": "jshint src/*.js test/*.js --config",
"lint": "fixpack && npm run jshint",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run compile-to-es5",
"preversion": "npm test",
"test": "npm run detect-cycle && npm run lint && npm run testee",
"testee": "testee test/test.html --browsers firefox"
},
"steal": {
"main": "src/can-stache-element.js",
"configDependencies": [
"./node_modules/steal-conditional/conditional.js"
]
}
}