-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "dust-react",
"version": "2.0.0",
"description": "Dust helper to render react components",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "babel src --out-dir lib --ignore test.js && webpack",
"build:minified": "webpack --optimize-minimize --output-filename=[name].min.js --devtool=source-map --output-source-map-filename=[name].min.map",
"prepublish": "npm run build && npm run build:minified"
},
"repository": {
"type": "git",
"url": "[email protected]:masotime/dust-react.git"
},
"keywords": [
"dust",
"react"
],
"bugs": {
"url": "https://github.com/masotime/dust-react/issues"
},
"homepage": "https://github.com/masotime/dust-react",
"author": "Benjamin Goh <[email protected]>",
"license": "ISC",
"dependencies": {
"react": "15.*",
"react-dom": "15.*"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-jest": "18.0.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"babel-preset-react": "6.16.0",
"cheerio": "0.22.0",
"dustjs-linkedin": "2.7.2",
"jest": "18.1.0",
"webpack": "2.1.0-beta.25"
}
}