forked from tc39/proposal-Array.prototype.includes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 844 Bytes
/
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
{
"name": "array.prototype.includes",
"version": "1.0.0",
"description": "Tests and a polyfill for the ES proposal for Array.prototype.includes",
"main": "reference-implementation/index.js",
"scripts": {
"build": "mkdir -p out && ecmarkup spec.html out/index.html",
"test": "test262-harness --prelude=reference-implementation/index.js --consoleCommand=\"node --harmony\" --runner=console test/built-ins/Array/prototype/includes/*.js"
},
"repository": "domenic/Array.prototype.includes",
"keywords": [
"ecmascript",
"array",
"test262",
"contains",
"includes"
],
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"license": "BSD-2-Clause",
"devDependencies": {
"ecmarkup": "^2.5.1",
"test262-harness": "^1.2.0"
},
"dependencies": {
"especially": "^1.8.2"
}
}