-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 992 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
{
"name": "dust2jsx",
"version": "0.6.1",
"homepage": "https://github.com/badoo/dust2jsx",
"description": "Convert Dust template to JSX",
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"coverage": "nyc --reporter=text --reporter=html mocha test/index.js",
"shrink": "echo 'Remove node modules' && rm -rf node_modules && rm -f npm-shrinkwrap.json && echo 'Reinstall modules' && npm install . && echo 'Shrinkwrap' && npm shrinkwrap --dev",
"test": "mocha test/index.js --exit",
"test:watch": "nodemon --ext js,json,html,jsx --watch src --watch test --exec 'npm run test'"
},
"keywords": [
"dust",
"jsx",
"react",
"pegjs"
],
"author": {
"name": "Milos Popovic",
"email": "the.elephant@gmail.com"
},
"license": "MIT",
"dependencies": {
"pegjs": "^0.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-files": "^1.4.0",
"mocha": "^5.0.0",
"nodemon": "^1.14.11",
"nyc": "^11.3.0"
}
}