-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 965 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
32
33
34
35
36
37
38
{
"name": "reshape-expressions",
"description": "local variables, expressions, loops, and conditionals",
"version": "0.1.5",
"author": "Jeff Escalante",
"ava": {
"verbose": "true",
"serial": "true"
},
"bugs": "https://github.com/reshape/expressions/issues",
"devDependencies": {
"ava": "^0.19.0",
"coveralls": "^2.11.16",
"nyc": "^10.1.2",
"reshape": "^0.5.0",
"snazzy": "^6.0.0",
"standard": "^9.0.2"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/reshape/expressions",
"keywords": [
"conditionals",
"expressions",
"loops",
"reshape-plugin"
],
"license": "MIT",
"main": "lib",
"repository": "https://github.com/reshape/expressions",
"scripts": {
"coverage": "nyc --reporter=html ava && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "standard | snazzy",
"test": "npm run lint && nyc ava"
}
}