-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "rosetta",
"version": "1.1.1",
"description": "A Webcomponent-like javascript framework",
"keywords": [
"rosetta",
"custom elements",
"template"
],
"author": "jiexuangao <[email protected]>",
"homepage": "https://github.com/jiexuangao/rosetta",
"contributors": [
{
"name": "jiexuangao"
}
],
"bugs": {
"url": "https://github.com/jiexuangao/rosetta/issues",
"email": "[email protected]"
},
"main": "index",
"repository": "[email protected]:jiexuangao/rosetta.git",
"scripts": {
"dist": "browserify index.js -t [ babelify --stage 0 ] --outfile ./dist/Rosetta.js",
"test": "karma start"
},
"dependencies": {
"ev-store": "^7.0.0",
"virtual-dom": "1.3.0"
},
"devDependencies": {
"babel-core": "^5.8.25",
"babel-loader": "^5.3.2",
"babelify": "^6.3.0",
"browserify": "^9.0.8",
"jasmine-core": "^2.3.4",
"karma": "^0.13.11",
"karma-babel-preprocessor": "^5.2.2",
"karma-browserify": "^4.4.0",
"karma-chrome-launcher": "^0.2.1",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-webpack": "^1.7.0",
"requirejs": "^2.1.20",
"webpack": "^1.12.2"
}
}