-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
31 lines (31 loc) · 898 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
28
29
30
31
{
"name": "proposal-partial-application",
"version": "1.0.0",
"description": "Proposal to add partial application operators to ECMAScript",
"private": true,
"scripts": {
"compile": "gulp build",
"start": "gulp start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbuckton/proposal-partial-application.git"
},
"keywords": [
"javascript",
"ecmascript"
],
"author": "Ron Buckton ([email protected])",
"license": "SEE LICENSE IN https://tc39.github.io/ecma262/#sec-copyright-and-software-license",
"bugs": {
"url": "https://github.com/rbuckton/proposal-partial-application/issues"
},
"homepage": "https://github.com/rbuckton/proposal-partial-application#readme",
"devDependencies": {
"del": "^6.0.0",
"ecmarkup": "^9.3.0",
"gulp": "^4.0.2",
"gulp-emu": "^2.1.0",
"gulp-live-server": "0.0.31"
}
}