Revert "remove common/script/src"

This reverts commit 7c5572608f.
This commit is contained in:
Alys
2016-03-01 05:30:44 +10:00
parent 7c5572608f
commit 3464914655
36 changed files with 3051 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
import {each} from 'lodash';
let subscriptionBlocks = {
basic_earned: {
months: 1,
price: 5
},
basic_3mo: {
months: 3,
price: 15
},
basic_6mo: {
months: 6,
price: 30
},
google_6mo: {
months: 6,
price: 24,
discount: true,
original: 30
},
basic_12mo: {
months: 12,
price: 48
}
};
each(subscriptionBlocks, function(block, key) {
block.key = key;
});
export default subscriptionBlocks;