-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 918 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 918 Bytes
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
{
"name": "catalyst-js",
"version": "0.1.1",
"description": "Observable state store for Javascript.",
"repository": {
"type": "git",
"url": "git://github.com/badguppy/catalyst-js.git"
},
"main": "catalyst.js",
"scripts": {
"test": "jest",
"build": "uglifyjs ./catalyst.js -o ./build/catalyst.min.js -c -m"
},
"author": "badguppy",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^23.6.0",
"babel-jest": "^23.6.0",
"uglify-es": "^3.3.9",
"jest-cli": "^23.6.0"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
}
}