-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 882 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
41
42
{
"name": "dynamic-elements",
"version": "1.0.0",
"description": "addon elements for Elemental",
"main": "./public/src/main.js",
"license": "BSD-3-Clause",
"author": "Dynamic, Inc",
"contributors": [
{
"name": "Dynamic, Inc",
"email": "[email protected]"
}
],
"engines": {
"node": "^4.2.0"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-jest": "^6.0.1",
"babel-preset-es2015": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"gulp": "^3.9.0",
"gulp-sass": "^2.0.4",
"jest-cli": "^0.8.2",
"semver": "^5.0.3",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"build": "gulp",
"test": "jest"
},
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testDirectoryName": "tests/javascript"
}
}