-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1.04 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
{
"name": "aurelia-redux-plugin",
"version": "0.1.2",
"description": "A Redux plugin for the Aurelia framework",
"main": "dist/commonjs/aurelia-redux-plugin.js",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "npm run build:es2015 && npm run build:commonjs && npm run build:system && npm run build:amd && npm run build:native",
"build:es2015": "tsc --module es2015 --target es2015 --outDir dist/es2015",
"build:native": "tsc --module es2015 --outDir dist/native-modules",
"build:commonjs": "tsc --module commonjs --outDir dist/commonjs",
"build:system": "tsc --module system --outDir dist/system",
"build:amd": "tsc --module amd --outDir dist/amd",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"aurelia",
"redux"
],
"author": "Steven Sojka",
"license": "MIT",
"typings": "src/aurelia-redux-plugin.ts",
"devDependencies": {
"typescript": "^2.0.3",
"typings": "^1.4.0"
},
"dependencies": {
"aurelia-framework": "^1.0.4"
}
}