-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "datum.js",
"version": "0.0.1",
"description": "Compile vue directive in HTML into raw data.",
"main": "index.js",
"scripts": {
"start": "npm run dev & npm run test",
"test": "npm run test:build && npm run test:run",
"test:build": "rollup -c ./config/rollup.test.config.js",
"test:run": "karma start",
"dev": "webpack --config ./config/webpack.config.js --watch",
"production": "rollup -c ./config/rollup.production.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SyaOS/datum.js.git"
},
"keywords": [
"vue",
"server",
"render",
"datum",
"data"
],
"author": "Sya-Tech",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sya-Tech/datum.js/issues"
},
"homepage": "https://github.com/Sya-Tech/datum.js#readme",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"jasmine-core": "^2.4.1",
"jquery": "^3.0.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-eslint": "^2.1.0",
"karma-jasmine": "^0.3.8",
"phantomjs": "^2.1.7",
"rollup": "^0.25.8",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-npm": "^1.4.0",
"rollup-plugin-replace": "^1.1.0",
"rollup-plugin-uglify": "^0.3.1",
"vue": "^1.0.20",
"webpack": "^1.12.15"
},
"dependencies": {}
}