forked from tc39/proposal-shadowrealm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.13 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
{
"name": "ecma-proposal-realms",
"version": "1.0.0",
"description": "ECMAScript spec proposal for Realms API",
"main": "shim/dist/realm-shim.js",
"module": "shim/src/main.js",
"license": "Apache-2.0",
"author": {
"name": "TC39 Open Source Contributors"
},
"keywords": [
"realms",
"ES8",
"ES2017",
"ECMAScript",
"ESNext",
"spec",
"proposal"
],
"homepage": "https://github.com/tc39/proposal-realms#readme",
"bugs": {
"url": "https://github.com/tc39/proposal-realms/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tc39/proposal-realms.git"
},
"scripts": {
"build": "ecmarkup spec/index.emu index.html --css ecmarkup.css --js ecmarkup.js",
"watch": "ecmarkup --watch spec/index.emu index.html --css ecmarkup.css --js ecmarkup.js",
"shim:lint": "eslint ./shim/src ./shim/test ./shim/examples",
"shim:prettier": "prettier --config ./shim/.prettierrc --write ./shim/src/**/**/*.js ./shim/test/**/**/*.js ./shim/examples/**/**/*.js",
"shim:test": "tape -r esm ./shim/test/**/**/*.js",
"shim:coverage": "nyc tape -r esm ./shim/test/**/**/*.js",
"shim:coveralls": "nyc report --reporter=text-lcov | coveralls",
"shim:build": "npm run shim:build:dev && npm run shim:build:prod",
"shim:watch": "npm run shim:build:dev --watch",
"shim:build:dev": "cross-env NODE_ENV=development rollup -c shim/rollup.config.js",
"shim:build:prod": "cross-env NODE_ENV=production rollup -c shim/rollup.config.js"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-minify": "^0.5.0",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"ecmarkup": "^3.16.0",
"eslint": "^5.6.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"esm": "^3.0.84",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"rollup": "^0.66.4",
"rollup-plugin-babel-minify": "^6.1.0",
"rollup-plugin-strip-code": "^0.2.6",
"rollup-watch": "^4.3.1",
"sinon": "^6.3.5",
"tape": "^4.9.1"
}
}