-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 962 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
39
40
{
"name": "number-to-words",
"version": "1.0.0",
"description": "This app provides an interface where a user can convert a number to words",
"main": "convert.js",
"scripts": {
"test": "jest --verbose",
"watch": "webpack --watch --colors"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"author": "Edward Lynn",
"license": "ISC",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.6.5",
"babel-jest": "^9.0.3",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jest": "^0.1.40",
"jest-cli": "^0.9.2",
"ractive": "0.7.3",
"raw-loader": "^0.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}