-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.71 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "active-view",
"version": "0.0.9",
"description": "Small and modular virtual DOM library",
"main": "dist/active-view.js",
"module": "src/index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"init": "rm -rf ./node-modules/ > /dev/null && npm i",
"serve": "npx serve",
"update": "npx npm-check-updates -u && npm install && npm update --dev && npm audit fix",
"test": "eslint . && cross-env BROWSERSLIST_ENV=modern NODE_ENV=test BABEL_ENV=test node ./build-utils/run-esm.js -s ./test/index.js | faucet && nyc report",
"test-webpack": "eslint . && cross-env BROWSERSLIST_ENV=modern NODE_ENV=test BABEL_ENV=test webpack --config ./webpack/test.config.js && nyc --reporter=lcov node ./test/build/index.js | faucet && nyc report",
"fix": "eslint --fix .",
"coverage": "codecov",
"build": "run-p build:*",
"build:legacy": "cross-env BROWSERSLIST_ENV=legacy NODE_ENV=production BABEL_ENV=production webpack --config ./webpack/production.config.js",
"build:modern": "cross-env BROWSERSLIST_ENV=modern NODE_ENV=production BABEL_ENV=production webpack --config ./webpack/production.config.js",
"documentation-old": "documentation build src/active-data.js -f md > DOCUMENTATION.md",
"documentation": "jsdoc2md src/active-data.js > DOCUMENTATION.md",
"release": "npm run release-patch --",
"release-patch": "va-release --version patch",
"release-minor": "npm test && npm run build && npm run documentation && va-release --version minor",
"release-major": "npm test && npm run build && npm run documentation && va-release --version major",
"build-templates": "va-release -t"
},
"va-release": {
"assets": "dist/**/*",
"files": [
{
"cwd": "templates/",
"src": [
"**/*"
],
"dest": "./"
}
],
"library": "activeView"
},
"dependencies": {
"enumify": "^1.0.4"
},
"devDependencies": {
"jsdoc-to-markdown": "^4.0.1",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": ">=10.0.1",
"babel-loader": "^8.0.5",
"babel-minify": "^0.5.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-istanbul": "^5.1.4",
"babel-preset-minify": "^0.5.0",
"codecov": "^3.3.0",
"cross-env": "^5.2.0",
"deepmerge": "^3.2.0",
"documentation": "^10.1.0",
"eslint": ">=5.16.0",
"esm": "^3.2.22",
"faucet": "0.0.1",
"foreach-cli": "^1.8.1",
"fs-extra": "^7.0.1",
"globby": "^9.2.0",
"imports-loader": "^0.8.0",
"inject-loader": "^4.0.1",
"is-glob": "^4.0.1",
"is-wsl": "^2.0.0",
"module-alias": "^2.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.0",
"regenerator-runtime": "^0.13.2",
"sinon": "^7.3.2",
"tape": "^4.10.1",
"terser-webpack-plugin": "^1.2.3",
"uglifyjs-webpack-plugin": "^2.1.2",
"universal-url": "^2.0.0",
"va-release": "^1.1.14",
"webpack": "4.30.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "3.3.2",
"webpack-merge": "4.2.1"
},
"tonicExampleFilename": "tonic-example.js",
"repository": {
"type": "git",
"url": "git+https://github.com/forceuser/active-view.git"
},
"author": {
"name": "Vitaly Dub",
"url": "https://github.com/forceuser"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/forceuser/active-view/issues"
},
"homepage": "https://github.com/forceuser/active-view#readme",
"keywords": [
"active view",
"virtual",
"dom",
"react",
"reactjs",
"data binding",
"json",
"render"
]
}