-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 883 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 883 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
{
"name": "ducker-model",
"version": "1.2.6",
"description": "",
"main": "dist/ducker.es5.js",
"typings": "index.d.ts",
"scripts": {
"build": "babel src/ducker.js -d lib",
"build:es6": "node rollup.js",
"build:es5": "node rollup.js --es5",
"test": "jasmine JASMINE_CONFIG_PATH=spec/ducker-test-cases/DuckerSpec.js",
"jest": "jest"
},
"icon": "icon.png",
"keywords": [],
"author": {
"name": "skinner",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"jasmine": "^3.4.0",
"jest": "^24.9.0",
"rollup": "^1.12.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-uglify-es": "0.0.1"
},
"dependencies": {
"all-contributors-cli": "^6.8.1",
"lodash": "^4.17.15",
"manba": "^1.3.1"
}
}