-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.53 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@royjs/ast",
"version": "1.0.0",
"description": "A quick static tools for royjs",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"build:umd": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --colors -w ./test/*.spec.js",
"prepublish": "npm run build && npm run build:umd",
"example": "parcel examples/index.html",
"docs": "node ./scripts/docs.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windyGex/roy.git"
},
"files": [
"dist",
"docs",
"lib",
"test",
"HISTORY.md",
"README.md",
"index.js"
],
"keywords": [
"mvvm",
"react",
"tiny",
"library",
"universal",
"umd",
"commonjs"
],
"author": "xing.gex",
"license": "MIT",
"bugs": {
"url": "https://github.com/windyGex/roy-ast/issues"
},
"homepage": "https://github.com/windyGex/roy-ast",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.6",
"eslint": "^4.13.1",
"eslint-loader": "^1.9.0",
"jsdoc-to-markdown": "^4.0.1",
"jsdom": "^11.12.0",
"mocha": "^4.0.1",
"parcel": "^1.9.7",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.6.2",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"uglifyjs-webpack-plugin": "^1.1",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"dependencies": {
"@babel/generator": "^7.1.5",
"@babel/parser": "^7.1.5",
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.1.5",
"prettier": "^1.15.2"
},
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
}
}