UNPKG

1.19 kBJSONView Raw
1{
2 "name": "@jsep-plugin/numbers",
3 "version": "1.0.1",
4 "description": "Adds support for binary, hex, and octal number formats, including _",
5 "author": "Shelly (https://github.com/6utt3rfly)",
6 "maintainers": [
7 "Eric Smekens (https://github.com/EricSmekens)",
8 "Lea Verou (https://github.com/LeaVerou)",
9 "Shelly (https://github.com/6utt3rfly)"
10 ],
11 "publishConfig": {
12 "access": "public"
13 },
14 "homepage": "https://ericsmekens.github.io/jsep/tree/master/packages/numbers#readme",
15 "license": "MIT",
16 "repository": {
17 "url": "EricSmekens/jsep",
18 "directory": "packages/numbers"
19 },
20 "type": "module",
21 "main": "./dist/cjs/index.cjs.js",
22 "module": "./dist/index.js",
23 "types": "types/tsd.d.ts",
24 "peerDependencies": {
25 "jsep": "^0.4.0||^1.0.0"
26 },
27 "devDependencies": {
28 "rollup": "^2.44.0",
29 "rollup-plugin-delete": "^2.0.0"
30 },
31 "engines": {
32 "node": ">= 10.16.0"
33 },
34 "scripts": {
35 "build": "rollup -c ../../plugin.rollup.config.js && cp ../../package-cjs.json dist/cjs/package.json",
36 "test": "cd ../../ && http-server -p 49649 --silent & node-qunit-puppeteer http://localhost:49649/packages/numbers/test/unit_tests.html",
37 "lint": "eslint src/**/*.js test/**/*.js"
38 }
39}