-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
39 lines (39 loc) · 1.15 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
{
"name": "@jsep-plugin/ternary",
"version": "1.1.4",
"description": "Adds ternary expression support",
"author": "Shelly (https://github.com/6utt3rfly)",
"maintainers": [
"Eric Smekens (https://github.com/EricSmekens)",
"Lea Verou (https://github.com/LeaVerou)",
"Shelly (https://github.com/6utt3rfly)"
],
"publishConfig": {
"access": "public"
},
"homepage": "https://ericsmekens.github.io/jsep/tree/master/packages/ternary#readme",
"license": "MIT",
"repository": {
"url": "EricSmekens/jsep",
"directory": "packages/ternary"
},
"type": "module",
"main": "./dist/cjs/index.cjs.js",
"module": "./dist/index.js",
"types": "types/tsd.d.ts",
"peerDependencies": {
"jsep": "^0.4.0||^1.0.0"
},
"devDependencies": {
"rollup": "^2.44.0",
"rollup-plugin-delete": "^2.0.0"
},
"engines": {
"node": ">= 10.16.0"
},
"scripts": {
"build": "rollup -c ../../plugin.rollup.config.js && cp ../../package-cjs.json dist/cjs/package.json && cp ../../LICENSE ./",
"test": "cd ../../ && http-server -p 49649 --silent & node-qunit-puppeteer http://localhost:49649/packages/ternary/test/unit_tests.html",
"lint": "eslint src/**/*.js test/**/*.js"
}
}