update for release
parent
4a3e160cf8
commit
01ad715b10
|
|
@ -6,4 +6,8 @@ tsconfig.json
|
||||||
.system
|
.system
|
||||||
*.tgz
|
*.tgz
|
||||||
.nyc_output
|
.nyc_output
|
||||||
coverage
|
coverage
|
||||||
|
syntax.md
|
||||||
|
testinglib
|
||||||
|
.travis.yml
|
||||||
|
.mocharc.json
|
||||||
32
package.json
32
package.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vogue",
|
"name": "vogue",
|
||||||
"version": "0.0.1",
|
"version": "0.1.0",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|
@ -20,7 +20,11 @@
|
||||||
"compile:watch": "yarn compile --watch --preserveWatchOutput",
|
"compile:watch": "yarn compile --watch --preserveWatchOutput",
|
||||||
"postinstall": "yarn compile && cd examples/test && yarn"
|
"postinstall": "yarn compile && cd examples/test && yarn"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"devDependencies": {
|
||||||
|
"c8": "^7.7.2",
|
||||||
|
"cross-env": "^7.0.3",
|
||||||
|
"multiview": "^3.0.1",
|
||||||
|
"yarn": "^1.22.10",
|
||||||
"@types/chai": "^4.2.18",
|
"@types/chai": "^4.2.18",
|
||||||
"@types/debug": "^4.1.5",
|
"@types/debug": "^4.1.5",
|
||||||
"@types/fs-extra": "^9.0.11",
|
"@types/fs-extra": "^9.0.11",
|
||||||
|
|
@ -31,25 +35,21 @@
|
||||||
"@types/sinon": "^10.0.0",
|
"@types/sinon": "^10.0.0",
|
||||||
"@types/uglify-js": "^3.13.0",
|
"@types/uglify-js": "^3.13.0",
|
||||||
"@types/uuid": "^8.3.0",
|
"@types/uuid": "^8.3.0",
|
||||||
"c8": "^7.7.2",
|
|
||||||
"chai": "^4.3.4",
|
"chai": "^4.3.4",
|
||||||
"concurrently": "^6.1.0",
|
|
||||||
"cross-env": "^7.0.3",
|
|
||||||
"debug": "^4.3.1",
|
|
||||||
"esm": "^3.2.25",
|
|
||||||
"fs-extra": "^10.0.0",
|
|
||||||
"lodash": "^4.17.21",
|
|
||||||
"mocha": "^8.4.0",
|
"mocha": "^8.4.0",
|
||||||
"mocha-lcov-reporter": "^1.3.0",
|
"mocha-lcov-reporter": "^1.3.0",
|
||||||
"moo": "^0.5.1",
|
|
||||||
"multiview": "^3.0.1",
|
|
||||||
"nearley": "^2.20.1",
|
|
||||||
"sinon": "^10.0.0",
|
|
||||||
"supervisor": "^0.12.0",
|
"supervisor": "^0.12.0",
|
||||||
|
"sinon": "^10.0.0",
|
||||||
"ts-node": "^9.1.1",
|
"ts-node": "^9.1.1",
|
||||||
"typescript": "^4.2.4",
|
"typescript": "^4.2.4"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"debug": "^4.3.1",
|
||||||
|
"fs-extra": "^10.0.0",
|
||||||
|
"lodash": "^4.17.21",
|
||||||
|
"moo": "^0.5.1",
|
||||||
|
"nearley": "^2.20.1",
|
||||||
"uglify-js": "^3.13.5",
|
"uglify-js": "^3.13.5",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2"
|
||||||
"yarn": "^1.22.10"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in New Issue